✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Što će se dogoditi prilikom pokretanja slijedećeg programa:
#include <iostream>using namespace std;int main() { int x = 0; int& ref = 5; cout << ref;
return 0;}