logo CodeStepByStep logo

stringMysteryAB

Language/Type: C++ parameters string references

What is the output of the following code?

void mystery(string a, string& b) {
    a.erase(0, 1);
    b += a[0];
    b.insert(3, "FOO");
}

int main() { // 01234
    string a = "marty";
    string b = "stepp";
    mystery(a, b);
    cout << a << " " << b << endl;
    return 0;
}
output
(order shuffled)

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.