Vidyalelo
C++ Programming · Q105

Classes and Objects in C++

Programming · C++ Programming · question 105

Q105

What will be the output of the following C++ code? #include #include using namespace std; int main () string str ("nobody does like this"); string key ("nobody"); size_t f; f = str.rfind(key); if (f != string::npos) str.replace (f, key.length(), "everybody"); cout << str << endl; return 0;

A.
nobody does like this
B.
nobody
C.
everybody
D.
everybody does like this
Answer

Answer: Option D

Solution

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