Is there a rule regarding which statements don't need to be terminated with a semicolon?
|
|
|
Yes, it's covered in section 6, "Statement" of the C++ standard (section 6 of C++03, it may have changed in C++11 but I don't have access to that one at the moment). There are a large number of statement types and not all of them need to be terminated. For example, the following
and there is no requirement to terminate that with a semi-colon. Of the different statements covered, the requirements are:
(a) Although it may sometimes appear that these are terminated with a semi-colon, that's not the case. The statement:
has the semi-colon terminating the inner expression statement, not the compound statement, somthing that should be obvious when you examine the first code segment above that has it inside (b) |
||||
|
|
|
Block statements do not need to have semicolons after them, which is why we don't need a semicolon after the close brace in this code:
Any expression acting as a statement must have a semicolon after it, which is why the Control statements (
ends with a semicolon, because the controlled Control-flow changing statements like Declaration statements like function prototypes, variable declarations, and struct/class/union declarations must be terminated with semicolons. For a complete list of statement types and their syntax, you can check out §6 of the C++ ISO standard, which goes over the grammars for each of these types of statements. This is how I was able to compile this list. Hope this helps! |
||||
|
|
3.After these indentifiers void,int,string,long etc..no semicolons required. 4.Functions also don't need semicolons when definitons come along. such as void fun(){........} |
|||
|