Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

cout was not declared in this scope

#include<iostream>
using namespace std; //use this
int main(){
    char t = 'f';
    char *t1;
    char **t2;
    cout<<t;        
    return 0;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #cout #declared #scope
ADD COMMENT
Topic
Name
5+5 =