1.6.3 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++;
 }