10-01-2010, 09:00 AM
First of all, use this: http://www.microsoft.com/express/Downloa...Visual-CPP
and second, change your code into this:
and second, change your code into this:
Code:
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
cout << "i'm a C++ program";
cin.get()
return 0;
}