pmacs3/code_examples/blah.c

29 lines
407 B
C
Raw Normal View History

2007-03-06 10:05:38 -05:00
int main() {
while(1 < 2) {
2008-04-18 23:32:08 -04:00
pritf("hola\n");
2007-03-06 10:05:38 -05:00
}
if(1 == 2)
printf("\n");
while(1 == 2)
if(1 == 2)
printf("\n");
do if(1 == 2)
printf("hola\n");
while(1 == 2);
while(1)
if(2 < 3) {
printf("\n");
printf("\n");
}
printf("\n");
printf("\n");
}