answersLogoWhite

0

The compiler demands it: your programs wouldn't compile without them.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

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

Because that is the defined statement terminator of the language.


Which symbol is used as a statement terminator in C?

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


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.


What is the C language terminator?

It is the semicolon. ;


What is a statement in c language programme?

Any experssion including assignment or a function call can be a statement in C


What is if-statement in c programming language?

One of the statements, obviously.


What is executable statement of c language?

anything ending in semicolon/;


What is else if in C programming language?

Statements. Typical usage: if (<condition>) <statement>; else <statement>;


Why is c string defined as an array?

Every programming language treats strings as arrays. A C string is defined as being a null-terminated array of characters. A C string that does not have a null-terminator is just an array of character values, but without a null-terminator the onus is upon the programmer to keep track of the array's length.


The meaning of if in C language?

if is a like a choicee.g.if (x==1) if x is equal to 1 then it will print "x=1"{printf("x=1);}else{printf("x does not =1")}Answer: If is an identifier, if is a statement.


What is difference between control statements and looping statements in c language?

differance between control statement and looping statement?


For loop in c language?

for(assigning initial value;condition;increment/decrement) { statement; }