Tuesday, August 22, 2006
C++
After almost 3 to 4 years now I was force to lay my hands on C++. I installed (not actually cause its an EXE) C++ and sat down figuring out how to work with it, setting environment. This is the first time I am setting up C++ in a system. It looked greek and latin for few hours, till i found some help from my drained memories and sisters notebook. to write a program which worked. It took me 3 long hours to write this program and 20 min to figure out where to look for the out put.
This is the program which i wrote in 3hrs.
This is the program which i wrote in 3hrs.
#include "iostream.h"
void main()
{
cout << "Hello World";
}

