View Single Post
  #1 (permalink)  
Old January 18th, 2012, 01:53 PM
BlueTower BlueTower is offline
Authorized User
 
Join Date: Jan 2012
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Exclamation I can't build my project. I get an error!

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!

Last edited by BlueTower; January 18th, 2012 at 01:56 PM..
Reply With Quote