Hi I am just trying c++ for the first time. I'm using Bjarne Stroustrups' book Programming: Principles and Practice Using C++. This is what he has in the book for his hello world program.
#include "std_lib_facilities.h"
int main()
{
cout << "Hello, World!\n";
return 0;
}
I am using Orwell Dev-C++ and it will not work however when i tried this
It works just fine. Is there something I can do to get the first to work because I'd hate to not be able to use the textbook I bought. Any help would be greatly appreciated.