Hi, its been a long time since I've done any programing.
Here's my problem, I can't get cout to work even in this simple test program. Using microsoft visual C++ 2008.
#include <iostream>
using namespace std;
cout << "TEST";
I get two errors.
-syntax error: missing ';' before '<<'
-missing type specifier - int assumed.
I tried using iostream.h but in that case I get an error saying file does not exist. Nearest I can figure is the program is tying to use cout as a variable.