Vidyalelo
C++ Programming · Q61

Arrays and Strings in C++

Programming · C++ Programming · question 61

Q61

What will be the output of the following C++ code? #include #include 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 << ' '; return 0;

A.
I like to code in c
B.
I like to code
Answer
C.
I like to code in c++
D.
I like to codeI like to code

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board