I am working on the \'driver\' part of my programing assignment and i keep getting this absurd error:
error C2065: \'cout\' : undeclared identifier
The include "stdafx.h" is ok
include "stdafx.h"
But you can't use cout unless you have included using namespace std
cout
using namespace std
If you have not included namespace std you have to write std::cout instead of simple cout
std::cout