Examveda

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;
}

A. I like to code in c

B. I like to code

C. I like to code in c++

D. I like to codeI like to code

Answer: Option B


Join The Discussion

Related Questions on Arrays and Strings in C plus plus