Click to See Complete Forum and Search --> : What's the difference between...


jfaust
July 29th, 2002, 03:07 PM
...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.

:D

Apologies,


Jeff

zdf
July 30th, 2002, 04:18 AM
I belief I’m an extrovert! :D

Here's another one… a classical, I think.

#include <iostream>
#define MAX 10;
using namespace std;
int main()
{
int i = 0;
//...
for ( i = 0; i < MAX; i++ );
{
cout << i << endl;
}
return 0;
}