✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
#include <stdio.h>
int x = 10;
int f(void) {
x = 20;
return x + 1;
}
int main(void) {
int x = f(x);
printf("%d", x);
return 0;
}
Kakšna vrednost se bo izpisala na izhod?