✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Podan je naslednji program:
int *povecaj(int *x) { *x = *x + 1; return x;}int main(void) { int y = 0; y = *povecaj(&y); povecaj(&y); printf("%d", y); return 0;}
Kakšna vrednost se bo izpisala na standardni izhod, ko se program izvede?