Can we put semicolon like while(condition); in a C Programming?
If while(condition); is valid, what does it mean?
|
|
|||||||||||||
|
is the same as
It can be used for waiting loops, e.g.:
|
|||||||||||||||||||||
|
|
It means the body of the loop is empty. Typically this pattern is used when the condition itself does some work. For example, this loop can copy bytes within the condition:
If you're using a semicolon, it's a good idea to put it on a separate line so that it looks less like a mistake. I personally tend to use empty braces -- {}, and sometimes a comment that the empty block is intentional. Edit: In the second comment, Tom Anderson notes an improvement over a lone semicolon. Google's C++ style guide recommends either this or {}.
|
|||||||||||||||||||
|
|
Yes, you can. It just means that the while loop will keep looping until
But generally people don't do this, as it would make more sense to put the logic in the body of the loop. Edit: There are some examples of this in use, for example, copying a null-terminated string:
|
|||||||||||
|
|
Because the condition may actually have side effects, such a construct is allowed. Consider the following:
This would advance the You may even use the comma operator to have ordinary statements inside the condition:
Because statements connected with the comma operator evaluate to the rightmost statement, in that case
|
||||
|
|
|
It will keep evaluating condition until it's false. It is a loop without a body. Programmers often add a space before the semicolon, i.e.
or empty braces:
to show the empty body is intentional and not just a typo. If you are reading some existing source code and wondering why there is an empty loop there you should read the next few lines as well to see if the semicolon should really be there or not (i.e. do the next few lines look like the body of a loop or not?). |
|||
|
|
|
while() is a loop. You're probably looking to do a "do-while" loop. Do-while loops run in this format:
The one you have listed above, however, is an empty loop. while() loops work nearly the same; there is simply no "do" portion. Good luck! |
|||
|
|
|
Yes, it's correct. It will loop the condition until it's false.
|
|||
|
|
|
The key to understanding this is that the syntax of the while loop in "C" is as follows:
Where statement can be any valid "C" statement. Following are all valid "C" statements:
So, by the rules of the while loop, the statement part (null statement in your example) will execute (do nothing) as long as condition is true. This is useful because it amounts to a busy wait till the condition turns false. Not a good way to wait, but useful nevertheless. You could use this construct, for example, if you want to wait for another thread (or a signal handler) to set a variable to some value before proceeding forward. |
|||
|
|
|
I always write this as:
So that it's obvious that it wasn't a mistake. As others have said, it only makes sense when condition() has side effects. |
|||
|
|
If the evaluation of the condition does not modify a value that influences the condition itself, |
|||||||||||||
|
|
it is absolutely correct. it means doing nothing in the loop,just polling the condition.And it is common in embedded system`s codes. |
|||
|
|
|
Its just a while loop with no execution body
is same as
|
|||
|
|
The code One use of The absence of any One could have I hope that's helpful, or at least food for thought! |
||||
|
|
|
Just another usage not described here:
This allows you to avoid several return calls or goto statements. |
|||||
|