✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Napišite ispis sljedećeg programa:
#include<iostream>using namespace std;
int a;void f() { a = 0; a++; cout << a;}
int main() { int a = 3; cout << a; f(); cout << a; f(); cout << a; return(0);}