#include void g(int a, int b) { char buf[80]; buf[0] = 'a'; printf("in g %c", buf[0]); } void f() { g(3, 4); }