Quote:
Originally posted by krazykemist
A little different but would this work as well?
Code:
#include <stdio.h>
main()
{int count; count=1; while (count <= 500)
{++count;printf("I will not throw paper airplanes in class.\n");
}
return 0;
}
|
You would only get it printed out 499 times. Count starts at 1 and before you do anything with it you are incrementing it to 2 so you loose 1 line of print.