/* p15.c */ void f1(void) { int x; printf("At entry to f1 x = %d \n", x); x = 55; } main() { f1(); f1(); }