advice

if my issue is the fact that i keep getting cout as being undeclared wtf can i possibly be doing wrong??
Last edited on
hmm...

include this line in your project:

using namespace std;

for example:

1
2
3
4
5
6
7
#include<iostream>

using namespace std;
int main(){
      cout <<"Hello!" << endl;
      return 0;
}


Topic archived. No new replies allowed.