91-9990449935 0120-4256464 |
while loop in CThe while loop in C language is used to iterate the part of program or statements many times. In while loop, condition is given before the statement. So it is different from the do while loop. It can execute the statements 0 or more times. When use while loop in CThe C language while loop should be used if number of iteration is uncertain or unknown. Syntax of while loop in C languageThe syntax of while loop in c language is given below: Flowchart of while loop in CExample of while loop in C languageLet's see the simple program of while loop that prints table of 1. Output1 2 3 4 5 6 7 8 9 10 Program to print table for the given number using while loop in COutputEnter a number: 50 50 100 150 200 250 300 350 400 450 500 Enter a number: 100 100 200 300 400 500 600 700 800 900 1000 Infinitive while loop in CIf you pass 1 as a expression in while loop, it will run infinite number of times.
Next Topicfor loop in C
|