CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2002
    Location
    California
    Posts
    1,582

    What's the difference between...

    ...an introvert programmer and an extrovert programmer?




    .
    .
    .






    An introvert programmer stares at his/her shoes while talking to you and an extrovert programmer stares at your shoes while talking to you.



    Apologies,


    Jeff

  2. #2
    Join Date
    Jun 2002
    Posts
    224

    Re: What's the difference between...

    I belief I’m an extrovert!

    Here's another one… a classical, I think.
    Code:
    #include <iostream>
    #define MAX 10;
    using namespace std;
    int main()
    {
      int i = 0;
      //...
      for ( i = 0; i < MAX; i++ );
      {
        cout << i << endl;
      }
      return 0;
    }
    Last edited by zdf; July 30th, 2002 at 04:39 AM.
    ZDF

    What is good is twice as good if it's simple.
    "Make it simple" is a complex task.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured