Home > Electronics Tutorials > C Language Tutorial > Statements - while

C Language Programming Library Reference Guide

Statements - while

The while statement provides an iterative loop.
Syntax:
  while( expression ) statement... statement is executed repeatedly as long as expression is true. The test on expression takes place before each execution of statement.
Examples:
 
while(*pointer!='j') pointer++;

while(counter<5)
 {
  printf("counter=%i",counter);
  counter++;
 }
Note: To report broken links or to submit your projects, tutorials please email to Webmaster

Discover

     more......