Question: 3
Mark
What is the output of this program?
#include <iostream>
using namespace std;
void copy (int& a, int& b, int& c)
{
a = 2:
b = 2
c = 2
int main )
int x = 1, y = 3, z = 7;
copy (x, y, z)
cout << "x =" <<x<<", y =" <<y<<", z =" <<z;
return 0;
}
Answers
Answered by
0
Answer:
fgwgsg2594949194949494995956499562916164695961656595*191
Similar questions