C programming loops
Loops causes program to repeat the certain block of
code until some conditions are satisfied. Loops are used in performing
repetitive work in programming.
C while loop
Syntax of while loop:
while (test expression)
{
statements to be executed.
}
No comments:
Post a Comment