#include #include #include using namespace std; int main() { char cstr[100]; string bla = "Hello, World!"; cout << bla << endl; // works fine! bla = "Test"; cout << bla << endl; // does not work! //cstr = "Test"; strcpy(cstr,"Test"); cout << cstr << endl; return 0; }