0
1.5kviews
Explain Control loops (looping) in C
1 Answer
1
10views

The C language provides for three loop constructs for performing loop operations. They are

• The while statement

• The do statement

• The for statement

• The while statement

The basic format of the while statement is

while(test condition) 
{
 body of the loop ;
}

The while is …

Create a free account to keep reading this post.

and 4 others joined a min ago.

Please log in to add an answer.