answersLogoWhite

0


Best Answer

A label, perhaps, could be considered as such.

User Avatar

Wiki User

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

Wiki User

12y ago

It is an external declaration or a defintion of a function or a type

This answer is:
User Avatar

Add your answer:

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

What is executable statement of c language?

anything ending in semicolon/;


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 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.


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 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 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)


What is if statement in c language?

first i would like to tell about if . if is keyword in c language . if is check the condition(expression) .if the expression is non zero value the condition is true .it will the go through the fallowing operations .other wise the condition is failed. if(expression) { } if the expression is >0 ,<0 these statements are execute inside the if statement. if the expression is =0 condition is failed.