Hi I have created a Visual C++ Win32 Console application. I am using MS Visual Studio 2008
The code is:
Code:
// Ex1_01.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
int _tmain(int argc, _TCHAR* argv[])
{
std::cout << "Hello world!\n";
return 0;
}
When I build the project I get the error:
1>Project : error PRJ0003 : Error spawning 'cmd.exe'.
Please help. thanks!