Void Jokes

  • Funny Jokes

    Subject: more microsoft c humor
    Subject: *** TOP SECRET MICROSOFT CODE ***
    Project: Version - Windows 95
    Microsoft marketing strategy (MARKET.EXE): #include
    #include
    #include /* Microsoft Network Connectivity library */
    #include /* For the court of law */
    #define say(x) lie(x)
    #define computeruser ALL_WANT_TO_BUY_OUR_BUGWARE
    #define next_year soon
    #define the_product_is_ready_to_ship another_beta_version
    void main()
    {
    if (latest_window_version>one_month_old)
    {
    if (there_are_still_bugs)
    market(bugfix);
    if (sales_drop_below_certain_point)
    raise(RUMOURS_ABOUT_A_NEW_BUGLESS_VERSION);
    }
    while(everyone_chats_about_new_version)
    {
    make_false_promise(it_will_be_multitasking); /* Standard Call, in
    lie.h */
    if (rumours_grow_wilder)
    make_false_promise(it_will_be_plug_n_play);
    if (rumours_grow_even_wilder)
    {
    market_time=ripe;
    say("It will be ready in one more...

    These are some of the error messages produced by Apple's MPW C
    compiler. They are all real. (If you must know I was bored one
    afternoon and decompiled the String resources for the compiler.)
    "String literal too long (I let you have 512 characters; that's 3
    more than ANSI said I should)"
    "...And the lord said, 'lo, there shall only be case or default
    labels inside a switch statement'"
    "A typedef name was a complete surprise to me at this point in your
    program"
    "You can't modify a constant, float upstream, win an argument with
    the IRS, or satisfy this compiler"
    "This struct already has a perfectly good definition"
    "type in (cast) must be scalar; ANSI 3.3.4; page 39, lines 10-11 (I
    know you don't care, I'm just trying to annoy you)"
    "Can't cast a void type to type void (because the ANSI spec. says
    so, that's why)"
    "Huh?"
    "Can't go more...

    Rules that guys wished girls knew..........
    1. If you think you're fat, you probably are. Don't ask us.
    2. Learn to work the toilet seat: if it's up put it down.
    3. Don't cut your hair. Ever.
    4. Birthdays, Valentines, and Anniversaries are not quests to see
    if he can find the perfect present, again!
    5. If you ask a question you don't want an answer to, expect an
    answer you don't want to hear.
    6. Sometimes, he's not thinking about you. Live with it.
    7. Don't ask him what he's thinking about unless you are prepared
    to discuss such topics as navel lint, the shotgun formation and
    monster trucks.
    8. Get rid of your cat. And no, it's not different, it's just like
    every other cat.
    9. Dogs are better than ANY cats. Period.
    10. Sunday = Sports. It's like the full moon or the changing of the
    tides. Let it be.
    11. Shopping is not sport.
    12. Anything you wear is fine. Really.
    13. You have enough more...

    Software Learning Process


    Hello World.......

    High School/Jr. High
    ===================

    10 PRINT "HELLO WORLD"
    20 END


    First year in College
    =====================
    program Hello(input, output)
    begin
    writeln('Hello World')
    end.


    Senior year in College
    ======================
    (defun hello
    (print
    (cons' Hello (list' World))))

    New professional
    ================
    #include
    void main(void)


    char *message[] = {"Hello ", "World"};
    int i;

    for(i = 0; i < 2; ++i)
    printf("%s", message[i]);
    printf(" ");
    }


    Seasoned professional
    =====================
    #include
    #include

    class string

    private:
    int size;
    char *ptr;

    public:
    string(): size(0), ptr(new char('')) {}

    string(const more...

    #include
    #include
    #include /* Microsoft Network Connectivity library */
    #include /* For the court of law */
    #define say(x) lie(x)
    #define computeruser ALL_WANT_TO_BUY_OUR_BUGWARE
    #define next_year soon
    #define the_product_is_ready_to_ship another_beta_version
    void main()
    {
    if (latest_window_version>one_month_old)
    {
    if (there_are_still_bugs)
    market(bugfix);
    if (sales_drop_below_certain_point)
    raise(RUMOURS_ABOUT_A_NEW_BUGLESS_VERSION);
    }
    while(everyone_chats_about_new_version)
    {
    make_false_promise(it_will_be_multitasking); /* Standard Call, in
    lie.h */
    if (rumours_grow_wilder)
    make_false_promise(it_will_be_plug_n_play);
    if (rumours_grow_even_wilder)
    {
    market_time=ripe;
    say("It will be ready in one month);
    order(programmers, stop_fixing_bugs_in_old_version);
    order(programmers, start_brainstorm_about_new_version);
    order(marketingstaff, more...

  • Recent Activity