int a; // global static int b; // static global int func( int e ) // param { int d; // local static int c; // static local a = 1111; b = 2222; c = 3333; d = 4444; e = 5555; }