int main() { int r; r = f(111, 222); } int f(int x, int y) { int i, j, k; i=j=k = 666; g(33); return 999; } int g(int x) { return 888; }