Thread: C Foxtrot Comic
View Single Post
Old 10-08-2003, 03:43 PM   #23 (permalink)
juanvaldes
Banned
 
Location: shittown, CA
C
Code:
#include <stdio.h>
int main(void) {
    for(int count=1; count<=500; count++){ printf("I will not throw paper airplaces in class.\n"); }
    return 0;
}
C++
Code:
#include &lt;iostream&gt;
void main() { for(int count=1; count<=500; count++){ cout << "I will not throw paper airplaces in class." << endl; } }
Just two of the many ways you can play with it...




Had to edit to make the includes show up. It was driving me nuts

Last edited by hrdwareguy; 10-09-2003 at 04:19 AM..
juanvaldes is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73