Hi, i'm having a few problems when debugging my project.
Basically i have two errors;
Error 2 error C2065: 'cout' : undeclared identifier
Error 3 error C2065: 'cin' : undeclared identifier
This is where the errors are (It's a header file)
int temp;
cout<<"Enter the Client Number : ";
cin>>temp;
I declared these in the .cpp file
case 2:
cout<<"Enter your client number : ";
cin>>temp; pcompany.getcdata(temp);
break;
And i have 1 warning also in the .cpp file
Warning1 warning C4101: 'temp' : unreferenced local variable
Please help if you can.
Thanks