#include int x; int func(); int main(int argc, char *argv[]) { x = 4; printf("x = %d\n", x); func(); printf("x = %d\n", x); }