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?

Priygop - Leading Professional Development Platform | Expert Courses & Interview Prep