6_2_4_03_static_local_zero_init.c (88B)
1 int f(void) { 2 static int n; 3 return ++n; 4 } 5 int test_main(void) { return f() + f(); }