#include void fun1(); void fun2(); int x = 251; void fun1() { int x = 17; fun2(); } void fun2() { printf("%d\n", x); } int main() { fun1(); }