hi,
I have been learning to use the visual C++ 2008 express edition from Windows which i downloaded for the windows web site. I'm new to programing and still getting the hang of it all. I was wondering if anyone would help me with a problem with compiling a code. When ever its done compiling a code the output says 1 failed, and a small window pops up and says system cannot find file specified, and the command promp will not appear. i tryed to make what seems to be the most basic code called "Hello World".
this is the code just in case its the problem
CODE
#include "Hello World.h"
int main (int argc, char* argv[])
{
std::cout<<"Hello, World!";
char myLine[100];
std::cin.getline(myLine,100);
return 0;
}
hope you can help thanks,
(p.s. hopefully you understand what im trying to say, dont quiet know all of the names/symbols of the language)