#include int x = 23; #define fun1() { int x = 371; fun2(); } #define fun2() { printf("%d\n", x); } int main(void) { fun1(); fun2(); return 0; }