A boy got caught in class throwing paper airplanes. The teacher gave him punishment to write 5000 times: “I Will Not Throw Paper Airplanes In Class” and submit it tomorrow.
The next day, the boy submitted the paper written.
#include
void main( )
{
clrscr( );int n;
for( n=1 ; n<=5000 ; n++ )
printf("I Will Not Throw Paper Airplanes In Class");
getch( );
}
Moral of the story: Be a programmer... think differently!