answersLogoWhite

0


Best Answer

Control statements are the statements that control the flow of program execution. For eg: loops: For, While, Do-While, decision making using if-then-else or switch-case and there's goto to transfer control.

User Avatar

Wiki User

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

Wiki User

13y ago

its take necessary decission and a control over the program

This answer is:
User Avatar

User Avatar

Wiki User

8y ago

Control statements in C Programming include conditions like if, for, and like.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

*Branching

*Looping

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

for

while

do while

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the various control statement in C language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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

differance between control statement and looping statement?


How do you use a C-continue statement in a block- without any looping or conditional statements?

In the C language, the continue statement can only be used within a loop (for, while, or do). Upon execution, control transfers to the beginning of the loop.


What is a statement in c language programme?

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


Basic control structure available in c plus plus?

The basic control structure in C++ is the if statement.


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


How do you use continue statement in c language?

In C continue stements are used inside the loops like for .while,do while .its a statement used in c language wher it tell the compiler to skip the following statement(statement or part of progm following continue)&continue with next iteration.it shud me noted that its diff from break statement wher the control of prog goes out of the particular loop.in case of for ,while ,or do loops when we use continue the rest of the loop will not me excecuted and it will go back to check the condition of the loop.


Which symbol is used as a statement terminator in C?

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


What is the purpose of break statement in c?

The break statement exits control of the innermost for, while or do-while loop, or switch statement.


How do you use control f5 in c?

The C language itself doesn't know anything about F5 key. Or Control.