answersLogoWhite

0

When a statement is followed by a semicolon, this means that there is going to be another statement following the first statement which is related to it closely enough that it should not become a separate sentence.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

Which symbol is used as a statement terminator in C?

semicolon ';' (Not applicable for block-statements)


What is a statement that has only a semicolon standing alone?

A single semicolon standing alone does not form a complete statement.


Why the semicoloumn is used in c program?

Why semicolon? Tradition.What does it do? Terminates a single statement, eg:i+= 3; /* expression is a single statement */{ i= 3; --j; } /* no semicolon after the compound statement */


Where you have to put semicolon in c programming?

For clasesses it defines from which class to inherit. :: means area of visibility in certain name space.


If you give semicolon after if?

You mean this: if;Syntax error.Or you mean: if (condition);Perfectly legal; if the condition is true, nothing happens. If the condition is false, the else-statement is executed (if there is an else-statement).


What is executable statement of c language?

anything ending in semicolon/;


Without printf statement semicolon print the statement?

int main (void) { if(printf("Print whatever you want")) { } }


What is statement terminator?

Semicolon, in some languages. Line-end in some others.


Can you write plus at end of c statement?

No. That would be a syntax error. Only a right semicolon (;) can go at the end of a statement.


What type of a key is a semicolon key?

The semicolon key is considered a punctuation key on a keyboard. It is typically used to insert a semicolon (;) into text, which serves as a punctuation mark to connect closely related ideas or to separate items in a complex list. In programming, the semicolon often functions as a statement terminator in various languages.


Why you use semicolon to terminate the lines in C programming?

Because that is the defined statement terminator of the language.


What is null statement?

in C: a semicolon in itself. Examples:1. while (*to++ = *from++);2. { goto END; ... END:; }