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

Example 5: This code could be the result of inlining some other functions called by Foo.

Back to Article