✅ 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 = 10;void funkcija(int a) { a = 5; cout << a; }int main() { cout << a++; funkcija(a); cout << a++; return 0; }