What are typical uses of null statement ;
in C ?
(I know that it is basically used to skip expression where it is expected by the compiler, but here I'm interested only in real-world examples of such use cases...)
Thanks
|
What are typical uses of null statement (I know that it is basically used to skip expression where it is expected by the compiler, but here I'm interested only in real-world examples of such use cases...) Thanks |
|||
|
It's typically the side-effect of a code block that was stripped by the preprocessor, like
That, or in loops where your condition already contains whatever needs to be done in each iteration. |
|||||
|
|
After a label at the end of a function (or more precisely, at the end of any block), e.g.
|
|||||||||||||||
|
|
The only uses I can think of are: 1- At the end of a loop, where the operations are already encoded within the loop statements. e.g. 2- At the end of a label, where no operation is needed to be done. e.g. |
|||
|
|
|
It's more of a null expression rather than a null statement, but it's often found in for loops.
etc |
|||||||||
|
|
I can think of
|
||||
|
|
|
I have used it, albeit rarely, in a possibly unusual situation (and one that some/many people would find wrong). I have had to sometimes write a very complex
It sometimes makes more sense (to me at least) to think of it in terms of positive logic. In other words, if the
|
|||||
|
|
See this other SO post: min macro in kernel.h |
|||
|
|
{}if you need an empty statement, it looks to me less likely to be accidental. So "never" ;-) – Steve Jessop Apr 8 '11 at 18:48{}is not useful in some of the contexts;would be useful in. – R.. Apr 8 '11 at 21:43forstatements you might write(;or;;, and since the parts omitted aren't statements (rather declarations or expressions),{}won't do. Obviously there are places in C where you can't just replace a semi-colon with{}. Almost all of them. But that's not what I meant :-) – Steve Jessop Apr 9 '11 at 20:04