Sail E0 Webinar
Question


What is the output of this program?


1.
#include
2.
#include
3.
using namespace std;
4.
int main()
5.
{
6.
string s = "a long string";
7.
s.insert(s.size() / 2, " * ");
8.
cout
Options:
A .  a long* string
B .  a long st*ring
C .  Depends on compiler
D .  None of the mentioned
Answer: Option C

In this program, We are placing the string based on the size of the string and it is a string hierarchicy.
Output:
$ g++ class2.cpp
$ a.out
a long* string



Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers