in C++ pleaseYou are working on problem set: Lab 9 (O Pause) parameterMystery9 Favorite Language/Type: C++ parameters references reference parameters pointers The following code produces 3 lines of output. What is the output? Write each line of output int parameter Mystery9(int* b, int& c, int a) { (*b)++; C += 3; a += 5; cout << << ” ” < a <<“” << *b << endl; return a; int main() { int a = 10; int b = 200; int c = 3000; parameter Mystery9(&a, b, c); int d = parameter Mystery9(&b, c, a); cout < a << ” ” << b << ” ” < < << ” ” < d << endl; return 0; line 1 line 2 line 3 Show transcribed image text You are working on problem set: Lab 9 (O Pause) parameterMystery9 Favorite Language/Type: C++ parameters references reference parameters pointers The following code produces 3 lines of output. What is the output? Write each line of output int parameter Mystery9(int* b, int& c, int a) { (*b)++; C += 3; a += 5; cout
Expert Answer
Answer to You are working on problem set: Lab 9 (O Pause) parameterMystery9 Favorite Language/Type: C++ parameters references refe…