void Foo() { int x = 0, y = 0; // Statement 1 x = 5; // Statement 2 y = 10; // Statement 3 printf("%d,_%d", x, y); // Statement 4 }