J
Jack
#include <string>
#include <iostream>
int main(){
string s= "Application";
return 0;
}
What am i doing wrong, I get an error message saying 'string undeclared
identifier'. This used to work.
#include <iostream>
int main(){
string s= "Application";
return 0;
}
What am i doing wrong, I get an error message saying 'string undeclared
identifier'. This used to work.