✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Što će se ispisati:
#include <iostream>using namespace std;int main() { int a = 3; int& ref = a; int b = ref; ref = a + 1; ref = a - b; cout << a << ref << b; return 0;}