Sorry for my bad english…
Code is: #include <iostream.h> #include #include
int main()
{
basic_string c;
basic_string z=“h”;
c=“gf”;
string tmp=“g”;
c.copy( tmp.begin(), c.size() );
cout << c << endl;
return 0;
}
I don’t understand why compiler gives message, that “basic_string” not found. Calling “copy” function although gives an error.
Maybe i must link some libraries?
What’s wrong with my programm?
ok, but compiler cannot find function “copy”…
it’s the most problem!
I found full annotation in HELP to , but i still don’t understand,
what can be wrong with this simple programm