Vidyalelo
C++ Programming · Q89

Classes and Objects in C++

Programming · C++ Programming · question 89

Q89

What will be the output of the following C++ code? #include using namespace std; void duplicate (int& a, int& b, int& c) a *= 2; b *= 2; c *= 2; int main () int x = 1, y = 3, z = 7; duplicate (x, y, z); cout << x << y << z; return 0;

A.
1468
B.
2812
C.
2614
Answer
D.
2713

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board