vote up 4 vote down star
int main()
{
  int var = 0;; // Typo which compiles just fine
}
flag

17  
Why should they be illegal? That's like making a blank line in VB illegal. – dreamlax May 5 at 11:46
1  
You can't compare the rules of two completely different languages in order to validate a specific language design choice. – R.A May 5 at 11:51
1  
dreamlax's point (I think) is: What's the harm? – j_random_hacker May 5 at 11:52
No harm at all. But it surely wasn't allowed in the language simply because it doesn't do any harm. – R.A May 5 at 11:56
9  
@R.A: I propose that it's allowed because it (a) does no harm and (b) affords certain conveniences (such as allowing "assert(x==42);" to compile down to the legal expression ";" when NDEBUG is defined). – j_random_hacker May 5 at 12:02
show 6 more comments

9 Answers

vote up 8 vote down check

This is the way C and C++ express NOP.

link|flag
Which is of prime importance on tight-budget microcontroller systems. – jpinto3912 May 5 at 13:34
vote up 11 vote down

Because you might need something like this:

while (x++ < 10);

In this statement, the semicolon is considered the while body. It's still a valid statement but it doesn't do anything. This increases the consistency of the language.

link|flag
2  
I think your example is an argument in favour of making it illegal (an empty block here instead would be more legible). But your point about consistency remains valid. – Konrad Rudolph May 5 at 11:48
Why not just do x = 11? – Unknown May 5 at 22:18
@Unknown because the condition is not always so simple. Sometimes like advancing an iterator, or w/e (yes, I know that there is std::advance) – Edison Gustavo Muenz May 5 at 22:25
This is a good example of how C can be very concise, but this breaks at least 2 MISRA-C rules. Suggest: while (x < 10) {x++;} – Steve Melnikoff May 6 at 12:24
vote up 8 vote down

I'm no language designer, but the answer I'd give is "why not?" From the language design perspective, one wants the rules (i.e. the grammar) to be as simple as possible.

Not to mention that "empty expressions" have uses, i.e.

for (i = 0; i < INSANE_NUMBER; i++);

Will dead-wait (not a good use, but a use nonetheless).

EDIT: As pointed out in a comment to this answer, any compiler worth its salt would probably not busy wait at this loop, and optimize it away. However, if there were something more useful in the for head itself (other than i++), which I've seen done (strangely) with data structure traversal, then I imagine you could still construct a loop with an empty body (by using/abusing the "for" construct).

link|flag
3  
Will that actually wait? Can the compiler optimize away the loop since nothing happens? – Tom May 5 at 11:53
Good question. Now that you mention it, I don't know. All I know is that it should. :) – Dan Fego May 5 at 11:55
@Tom: Good question. In C++ at least, according to the standard, execution time is not explicitly part of the "observable behaviour" of the system, so in theory I suppose a compiler could optimise this out. However, if i is volatile then this optimisation is forbidden. – j_random_hacker May 5 at 11:58
vote up 3 vote down

The most common case is probably

int i = 0;
for (/* empty*/; i != 10; ++i) {
    if (x[i].bad) break;
}
if (i != 10) {
    /* panic */
}
link|flag
vote up 1 vote down
while(1){
    ; /* do nothing */
}

There are times when you want to sit and do nothing. An event/interrupt driven embedded application or when you don't want a function to exit such as when setting up threads and waiting for the first context switch.

example: http://lxr.linux.no/linux+v2.6.29/arch/m68k/mac/misc.c#L523

link|flag
5  
CPU cooling test? – lc May 5 at 11:50
1  
You don't need the semicolon there! – Thomas Padron-McCarthy May 5 at 12:27
used usually in benchmark shootouts between languages :) – gbjbaanb May 5 at 12:28
You could write while(1); And true, in some cases you do not need the ';' however that is not true with all compilers. A fair amount of embedded compilers will yell at you if you are missing it. However you are correct that in the ANSI C Grammar it is not required. – Sweeney May 5 at 12:32
vote up 12 vote down

It's obviously so we can say things like

for(;;) {
  // stuff
}

Who could live without that?

link|flag
1  
God forbid we use goto! – Marc Bernier May 5 at 15:48
1  
That's not a good example, because, for example, the second semicolon is not used to end a statement. The second clause of the for is an expression; and leaving that empty is treated as a special case making it equivalent to true. – newacct May 5 at 18:06
The original question was about expressions, not statements. – Neil Butterworth May 5 at 18:10
vote up 4 vote down

I honestly don't know if this is the real reason, but I think something that makes more sense is to think about it from the standpoint of a compiler implementer.

Large portions of compilers are built by automated tools that analyze special classes of grammars. It seems very natural that useful grammars would allow for empty statements. It seems like unnecessary work to detect such an "error" when it doesn't change the semantics of your code. The empty statement won't do anything, as the compiler won't generate code for those statements.

It seems to me that this is just a result of "Don't fix something that isn't broken"...

link|flag
DMR's original C compiler (which is where this syntax comes from) was a recursive descent compiler - such compilers are normally hand written, so I don't think the toolds were an issue here. – Neil Butterworth May 5 at 12:04
That almost makes it seem more likely that this sort of thing would happen. If you are handcoding a r.d.p., then you are writing a function for every production in your grammar whose job is to match the next stretch of input... If expressions and other stuff make up statements, and both expressions and other stuff can end up consuming no input (except for the ultimate semicolon to follow), then the parser would recognize such statements. Idk if this is the real reason, but it seems like a reasonable way to reason it out. (I never wrote a huge r.d.p., but I have written one before). – Tom May 5 at 18:38
I am looking now at one particular Yacc grammar for a C-like language, and the empty statement requires an extra rule, so the opposite seems to be true. At least with that grammar, for that language, for that tool. – Thomas Padron-McCarthy May 6 at 3:53
vote up 12 vote down

How else could assert(foo == bar); compile down to nothing when NDEBUG is defined?

link|flag
vote up 2 vote down

You want to be able to do things like

while ( fnorble(the_smurf) == FAILED )
    ;

and not

while ( fnorble(the_smurf) == FAILED )
    do_nothing_just_because_you_have_to_write_something_here();

But! Please do not write the empty statement on the same line, like this:

while ( fnorble(the_smurf) == FAILED );

That's a very good way to confuse the reader, since it is easy to miss the semicolon, and therefore think that the next row is the body of the loop. Remember: Programming is really about communication -- not with the compiler, but with other people, who will read your code. (Or with yourself, three years later!)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.