0
1.5kviews
Explain Control loops (looping) in C
1 Answer
| written 7.0 years ago by |
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 …