Originally posted by: xcript
Originally posted by: SaltBoy
Originally posted by: NogginBoink
Originally posted by: xcript
Oh dear, the outputted strings are not newline-terminated.
I noticed that myself. Kinda makes the comic not-quite-as-funny.
I hope you're not being serious.
We are. Here's a patch:
---------------------------- Cut here -----------------------------
--- foo.c 2003-10-03 06:21:58.000000000 -0700
+++ bar.c 2003-10-03 06:21:52.000000000 -0700
@@ -4,7 +4,7 @@
int count;
for(count=1; count<=500; count++)
- printf("I will not throw paper airplanes in class.");
+ printf("I will not throw paper airplanes in class.\n");
return 0;
}
---------------------------- Cut here -----------------------------