MCQOPTIONS
Saved Bookmarks
| 1. |
Note:Includes all required header files using namespace std; int main() { string s = "a long string"; s.insert(s.size() / 2, " * "); cout << s << endl; return 0; }13.What is the output of this program? |
| A. | Inherited |
| B. | Error |
| C. | Runtime error |
| D. | None of the mentioned |
| Answer» B. Error | |