✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int *f(int *x) {
return x;
}
...
int *y, z = 55;
y = f(&z);
printf("%u", (unsigned int)y);
Kaj se bo izpisalo na izhod, ko se koda izvede?