Hi all, ok i have just started learning C++ today and i have download "Visual C++ 2008 Express Edition" and i am trying to make the "Hello World" program. I clicked on "Create Project" and then "Win32 Console Application" and then typed in the name "Hello World" then i right clicked on "Source Files" then "Add New Item" and then ".cpp" and typed in "Hello World" then i wrote into the big black page...
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World! ";
cout << "I'm a C++ program";
return 0;
}
And then i clicked on "Build" then "Build Solution" then i clicked the green arrow "Start Debugging"
Then ERROR... The black command prompt screen shows up for about 1 second and disapears before i can even read the writing.
Please help... Thanks for comments