int a; // global static int b; // static global int func( int e ) // param { int d; // local static int c; // static local a = 1; b = 2; c = 3; d = 4; e = 5; }