vote up 6 vote down star
2

My guess is it just made parsing easier, but I can't see exactly why.

So what does this have ...

do
{
  some stuff
}
while(test);

more stuff

that's better than ...

do
{
  some stuff
}
while(test)

more stuff
flag

6 Answers

vote up 20 vote down check

It's because while statements are valid within a do-while loop.

Consider the different behaviors if the semicolon weren't required:

int x = 10;
int y = 10;

do 
  while(x > 0)
    x--;
while(x = y--);
link|flag
Nice example! . – Andrew Coleson Jun 2 at 22:49
Thanks, that seems to explain the apparent arbitrary ; – justinhj Jun 2 at 23:11
4  
The fact that there is no instruction between do and while would be enough for a compiler to find the difference between while "end of do" and while "new loop". Your example is interesting but i don't think it explains why there is a semicolon after do's while. – BenoĆ®t Jun 3 at 6:36
@Benoit: not so, because an empty do/while loop and an empty while loop are both legal. If it were also legal to omit the semi-colon following do/while, then there is nothing to distinguish Don's example from "do while(x > 0); x--; while(x = y--);" Which loops forever. To avoid ambiguity, at least one of those empty loops would have to be banned. – Steve Jessop Jun 3 at 20:58
1  
onebyone: Not true. do while(...); isn't legal. An empty do-while loop is written like: do ; while(...); or do {} while(...); It wouldn't compile otherwise. – Mehrdad Afshari Sep 19 at 15:40
show 2 more comments
vote up 24 vote down

Because you're ending the statement. A statement ends either with a block (delimited by curly braces), or with a semicolon. "do this while this" is a single statement, and can't end with a block (because it ends with the "while"), so it needs a semicolon just like any other statement.

link|flag
Well, there is some legitimacy to the question. for(;;) {do something; } Doesn't actually end with any semicolons other than the ones that go with the contained statements. – Matthias Wandel Jun 2 at 22:37
6  
@Matthias: but it ends with a curly brace. – kitchen Jun 2 at 22:38
And the reason that it has to be a "statement" is because a computer is putting your code together for you into a program.. the consistency isn't for the programmer's sake – ryansstack Jun 2 at 22:44
It still seems arbitary to me whether you define the iteration statement as DO statement WHILE '(' expression ')' ';' DO statement WHILE '(' expression ')' but I suppose it is more conistent. It's basically saying you must end this with a statement but it has to be a semi colon. – justinhj Jun 2 at 22:48
3  
If it seems arbitory try writing the grammer without it. Since Statements can be nested you need to define a delimiter. In C/C++ this is the ';'. – Martin York Jun 3 at 0:16
show 5 more comments
vote up 7 vote down

While I don't know the answer, consistency seems like the best argument. Every statement group in C/C++ is either terminated by

  1. A semicolon
  2. A brace

Why create a construct which does neither?

link|flag
So, why can't I do this: int testFunc(int x) return x+1; – Rocketmagnet Jun 3 at 18:45
@Rocketmagnet, you can't allow all statements (including null statement), because "void f() ;" (function definition with a "null statement" as body) would not be different from "void f();" (function declaration only). Both look the same. Requiring a compound statement is a good thing. And anyway, a function definition isn't a statement. – Johannes Schaub - litb Sep 19 at 16:36
vote up 1 vote down

In C/C++ whitespace don't contribute to structure (like e.g. in python). In C/C++ statements must be terminated with a semicolon. This is allowed:

do
{
  some stuff; more stuff; even more stuff;
}
while(test);
link|flag
vote up 2 vote down

C is semicolon-terminated (whereas Pascal is semicolon-separated). It would be inconsistent to drop the semicolon there.

I, frankly, hate the reuse of the while for the do loop. I think repeat-until would have been less confusing. But it is what it is.

link|flag
vote up 0 vote down

I see this is an old question, but at the same time I see that the accepted answer does not match the question. I don't know why it is so. (What the question changed afterwards?)

Anyway, the question in its current form is why we need a terminating ; after the controlling expression in the do-while cycle. If you take a look at C++ grammar, you'll the that the iteration statements are defined as

while (condition) statement
do statement while (expression) ;
for (for-init-statement condition-opt; expression-opt ) statement

Note that only do-while statement has an ; at the end. So, the question is why the do-while is so different from the rest that it needs that extra ;. Let's take a closer look: without that ; the do-while statement would end with an expression in (). Note that the enclosing () requirement lets the compiler to unambiguously find the end of the controlling expression, meaning that the terminating ; is really redundant.

However, in practice that would mean that, for example, the following code

do
{
  /* whatever */
} while (i + 2) * j;

is valid from the grammar point of view, but would really be parsed as

do
{
  /* whatever */
} while (i + 2)

*j;

While this is formally sound, it is not really intuitive. For this reason, in order to avoid such counter-intuitive results, it was decided to add a more explicit terminator to the do-while statement - a semicolon.

link|flag
You can see that the question hasn't been edited, the number of edits is shown when there are any. The question seems straightforward enough that I hope it means what I intend. The accepted answer seems superior to yours, since it shows that without the semi-colon, valid uses of the grammar become ambiguous. In your example it is merely confusing to the user. – justinhj Oct 26 at 2:58
@justinhj: No, absolutely incorrect. The accepted answer is confusing, since it implies some "different behaviors", but fails to explain what behaviors these would be. Expectedly, as you can easily see by yourself, one of the commenters on the accepted answer got actually confused when he assumed that without semicolon requirement the inner while statement would get mis-associated with the outer do. That's simply not true. The grammar is specifically crafted not to let this happen, semicolon or not. – AndreyT Oct 26 at 5:36
I wish the author of the accepted answer would clarify, which "different behaviors" he was implying... Without that the accepted answer is not an answer at all. – AndreyT Oct 26 at 5:37
The different behaviour is quite clear to me. Without the semi-colon requirement you simply cannot nest a while loop inside a do-while, and this seems wrong. – justinhj Oct 31 at 7:22
@justinhj: But that's not true. Someone told you so and you just accepted it rigth away without a single doubt. In fact, even without the semi-colon requirement (after do-while) you still can nest a while loop inside a do-while one and it still will be correctly associated. There's no problem in writing the language grammar that way, and in fact it is already written that way. – AndreyT Oct 31 at 16:09
show 2 more comments

Your Answer

Get an OpenID
or

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