FoxTrot Classics by Bill Amend for October 03, 2014

  1. F 14 tomcat
    interceptor  over 9 years ago

    He was supposed to write “I will not throw paper airplanes in class” 500 times. Instead he wrote computer code for a program that would do that.

     •  Reply
  2. B986e866 14d0 4607 bdb4 5d76d7b56ddb
    Templo S.U.D.  over 9 years ago

    Writing “I will not [do such misbehavior] in class” a certain amount of times can really give you carpal tunnel syndrome. What a harsh punishment.

     •  Reply
  3. Missing large
    Zowayix  over 9 years ago

    Silly Jason, puts() is faster than printf() and you don’t even need the explicit newline at the end. Also, C? How old is this comic?

     •  Reply
  4. 250
    ladykat  over 9 years ago

    I got it.

     •  Reply
  5. 5c372578 b1c0 4970 bedc 030c7b7eb20f
    Michael Jones  over 9 years ago

    Good thing he included the stdio library or it would never have compiled.

     •  Reply
  6. Missing large
    Observer fo Irony  over 9 years ago

    Now he is gong to have to write that program five hundred times to satisfy the teacher’s requirements

     •  Reply
  7. Plumbbob wilson
    Plumbob Wilson  over 9 years ago

    And no syntax errors. Nice.

     •  Reply
  8. Missing large
    Deezlebird  over 9 years ago

    I’m grateful for the info, I’m reading as I eat breakfast before work and I don’t have time to try and figure it out. Plus I’m not a programmer so it would just have been one of those comics I never understood, because trust me I wouldn’t have spent much time on it.

     •  Reply
  9. Dr strange
    Wenthral  over 9 years ago

    Today I would not be surprised if that teacher got fired for doing this….And the parents suing the school and winning.

     •  Reply
  10. Missing large
    bloognoo  over 9 years ago

    More likely meant to be C++ than C as main() returns an int, and it´ll only print 499 lines as the test in the loop will not run the 500th iteration. This is why C/C++ indexes from 0 rather than 1. muttergrumbleoldprogrammermuttergrumble

     •  Reply
  11. 5446d001 5a98 4b64 8030 f545c7f6eae0
    MD Bear Premium Member over 9 years ago

    No real programmer starts a loop counter with 1.

    The for line should be:for (count = 0; count < 500; count++) {

    Or, better yet, in Perl, here’s the whole thing:

    $i = 0;$msg = “I will not throw paper airplanes in class\n”;

    print $msg while ($i++ < 500);

     •  Reply
  12. Missing large
    bru5ce Premium Member over 9 years ago

    Um… I still program in C… Lots of use still. That said, I wrote my Internet company’s billing system in Perl 20 years ago.

     •  Reply
  13. 2006 afl collingwood
    nosirrom  over 9 years ago
    If Jason wanted to blow the teacher’s mind he would have used Assembly Language. Or better yet Machine Code.

    BALR 14,15

     •  Reply
  14. Missing large
    mlvezie  over 9 years ago

    I program in C too (for work, I write python for fun).

    Obligatory python version:

    for i in range(500): print(“I will not throw paper airplanes in class”)

     •  Reply
  15. Clint
    TOMOTH  over 9 years ago

    I did.

    I also have the ORIGINAL from ~2000.

     •  Reply
  16. Radedsmiley
    meg_grif  over 9 years ago

    Now that he’s got the program written, he still has to compile and run it, which is going to be hard to do on that blackboard. Most blackboards don’t have a C compiler.

     •  Reply
  17. Avatar
    neverenoughgold  over 9 years ago

    So, does Jason get a “C” for this; or will he get a C++?

     •  Reply
  18. Missing large
    Justarunner Premium Member over 9 years ago

    Awsome! A cartoonist that knows C!You made my day, since I am just learning to program an Arduino, and everything looked great!

     •  Reply
  19. Kea
    KEA  over 9 years ago

    Works for me. (I would have given bonus points)

     •  Reply
  20. Missing large
    htmlguy  over 9 years ago

    Doesnt work according to IDEONE.com:Runtime errortime: 0.02 memory: 5312 signal:-1

     •  Reply
  21. Missing large
    dflak  over 9 years ago

    First time I saw this strip, I was still programming in C.

     •  Reply
  22. Dodge viper green 2
    rgcviper  over 9 years ago

    Personally, I’m having a Bart Simpson moment here.

    (Can’t believe no one’s said this yet …)

     •  Reply
Sign in to comment

More From FoxTrot Classics