I'm trying to use Ms Visual Studio 2008 to write a simple C++ program. I have followed all the instructions in this page:
http://msdn2.microsoft.com/en-us/library/ms235629.aspx but I keep getting error when compiling my project. I'm just running a simple code:
#include <iostream>
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
}
I keep getting this error: Project : error PRJ0003 : Error spawning 'rc.exe'.
Anyone knows how I should setup in order to write C++ program correctly?
Start Free Trial