Ich habe ein C++ Programm:'cout' wurde nicht in diesem Bereich erklärt
#include<iostream>
int main()
{
char t = 'f';
char *t1;
char **t2;
cout<<t; //this causes an error, cout was not declared in this scope
return 0;
}
g ++ test.cpp
Ich erhalte den Fehler error: 'cout' was not declared in this scope
warum?
Ich frage mich, wie oft dies hier gefragt wurde. –