I heard that almost every C++ programmer, including professionals, started with this exact program:

Code:
#include <iostream.h>

int main()
{
	cout << "Hello World!" << endl;
	return(0);
}
I was wondering if that is true?