Hello
I'm trying to make program run. When I try Hello World in win32 project/.cpp file I get bunch of errors
1>------ Build started: Project: HelloWorld3, Configuration: Debug Win32 ------ 1>Compiling... 1>hello.cpp 1>...\projects\helloworld3\helloworld3\hello.cpp(7) : error C2065: 'cout' : undeclared identifier 1>...\projects\helloworld3\helloworld3\hello.cpp(7) : error C2001: newline in constant 1>...\projects\helloworld3\helloworld3\hello.cpp(8) : error C2143: syntax error : missing ';' before 'return' 1>Build log was saved at "file:/...\Projects\HelloWorld3\HelloWorld3\Debug\BuildLog.htm" 1>HelloWorld3 - 3 error(s), 0 warning(s)
#include <iostream>
int main()
{
cout <<"Hello World!<<endl;
return 0;
}