#include #include "test9.h" void funcA () { global_i = 5; printf ("func A: global_i=%d\n", global_i); } int main () { funcA (); funcB (); }