Hello, please help me. I am using microsoft visual C++ 2008 express edition.
I am following Sams teach yourself C++ in ten minutes and am stuck on "hello world"
This is my source code file:
#include <iostream.h>
int main()
{
cout << "Hello World!\n";
return 0;
}
I clicked "Build solution" and then when I try to "start without debugging" all I get is a black window appear saying "press any key to continue...". No "Hello World!" is displayed.
I am confused because I am following the instructions precisely or so I think.
Any input gladly appreciated.
Thank you