answersLogoWhite

0


Best Answer

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

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

8y ago

A statement in C ends with a semi-colon.

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

;

/

*

&

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is statement terminator in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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 executable statement of c language?

anything ending in semicolon/;


What is if-statement in c programming language?

One of the statements, obviously.


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?


Write a programme in c to print hello world without using statement terminator?

#include<stdio.h> #include<conio.h> void main() { if(printf("hello world")){} if(getch()){} }