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