#include < stdio.h >
#define NUS “No, U cant Sleep”
int main(void) {
int time;
time = 0;
while ( time < 6 ){
printf ( “\n%s”, NUS);
}
return 0;
}
been studying programming for the whole night. Now my brain is not functioning well, but what to do, exam is on Wednesday and I’m 7 chapters away from where I’m supposed to be at. 14 chapters are not possible to be finished in one night… * sobs *

That’s an infinite loop… Haha… will print forever until you are 80 years old, or untill the computer burst in flames
(there is no time++, and time is not declared also)
Comment by Jacky — November 13, 2005 @ 19:46
On second thought, it will not run until you are 80 years old, because the program will not compile, not to say run lar.
Comment by Jacky — November 13, 2005 @ 19:48
Jacky : Yea… it is an infinite loop… cuz it was supposed to run forever… However, I sux in programming, so it doesnt matter… I don’t do C anyway…
Comment by ~shadow~ — November 13, 2005 @ 20:21