main() { int x; printf("main stack frame around 0x%x\n", &x); bar(); } bar() { int x; printf("bar stack frame around 0x%x\n", &x); }