If I have:
String a;
cin >> a;
cout << a << endl;
What is the easiest way to have it read the full string including spaces.
If I have:
String a;
cin >> a;
cout << a << endl;
What is the easiest way to have it read the full string including spaces.