void func(int a, int b, int c) { char buf1[5]; char buf2[20]; } void main() { int x; x = 9; func(1, 2, 3); x = 1; printf("%d\n", x); }