                                         /* Chapter 3 - Program 1 */
/* This is an example of a "while" loop */

main()
{
int count;

   count = 0;
   while (count < 2300) {
      printf("The value of count is %d\n",count);
      count = count + 2;
   }
}



/* Result of execution

The value of count is 0
The value of count is 1
The value of count is 2
The value of count is 3
The value of count is 4
The value of count is 5

*/
