61. What will be the output of the following C++ code?
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string str ("I like to code in C");
unsigned sz = str.size();
str.resize (sz + 2, '+');
str.resize (14);
cout << str << '\n';
return 0;
}
#include <iostream>
#include <string>
using namespace std;
int main ()
{
string str ("I like to code in C");
unsigned sz = str.size();
str.resize (sz + 2, '+');
str.resize (14);
cout << str << '\n';
return 0;
}