answersLogoWhite

0


Best Answer

anything ending in semicolon/;

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is executable statement of c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why functions use in c language?

Because you have to: any executable statement in C must belong to one function or another; there mustn't be executable statements outside of functions.and it also reduces the length of the program


What is non executable statement of c language?

A label, perhaps, could be considered as such.


What is the character used at the end of executable statements in C plus plus?

The semi-colon converts a C++ expression into a statement.


Programming process of c language?

Write the source program. Compile. Link executable. Run it.


What is Turbo C download used for?

Turbo C is a compiler for a general purpose computer programming language called C. It transforms code written in C into the computer language needed for executable programming.


What is a statement in c language programme?

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


Is rem an non executable statement in qbasic?

Yes


What is if-statement in c programming language?

One of the statements, obviously.


What is statement terminator in c language?

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


What is else if in C programming language?

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


Which symbol is used as a statement terminator in C?

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


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.