while Loop :

while loop :

A while loop is used to execute and repeat a block of statements depending on a condition.

Syntax :

  1. while ( <condition> )
  2. {
  3. <statement block>
  4. }

Example :

  1. /* Description: simple while loop 1 to 10 */
  2. #include<stdio.h>
  3. main()
  4. {
  5. int i=1;
  6. while(i<=10)
  7. {
  8. printf("%d ",i);
  9. i++;
  10. }
  11. getch();
  12. }

Output :

c language - simple while loop 1 to 10

Computer Science Engineering

Special Notes

It's a special area where you can find special questions and answers for CSE students or IT professionals. Also, In this section, we try to explain a topic in a very deep way.

CSE Notes