Skip to main content
🔮 Output PredictionC+ C++ Medium⚡+20 XP

Reference vs Copy

What is the output?

C++
int a = 5;
int& b = a;
b = 10;
cout << a;

🔮 What is the output?