this is my first post on here! i started learning C++ a few days ago and i am working my way through bjarne stroustrups second edition on programming. now while i was waiting for the book to arrive i started an online tutorial and got my 'hello world!' program running easy peasy (through visual studio 10). now the book has arrived i thought i would just start again, more writing practice the better right? anyway using his specific header that the book reccomended "std_lib_facilities.h" my program will write and open in console, but i get the error:
'"c:\users\tom\documents\visual studio 2010\Projects\Hello World!\Debug\Hello Wo rld!.exe"' is not recognized as an internal or external command, operable program or batch file. Press any key to continue . . .
now i have been trying to fix this for a while, and no i cant find 'hello world!.exe' in my debug folder, and i cant find how to change the path.
i apologize if this is a silly question, but i dont know exactly what the problem is so i dont know where else to look for answers!
p.s the code is
#include "std_lib_facilities.h"
int main()
{
cout<<"Hello,World!\n";
return 0;
}