I try to compile following C++ program on gcc/g++ version 3.3.
include<string.h>
int main() { string s1("hello world");
return 0; }
make gives me:
- string undeclared (first use in this function)....
plz help me...
Wim
int main() { string s1("hello world");
return 0; }