static int statint=0; static float statfloat=0.0f; void intintint ( int a, int b, int c ) { register int d, e, f; d=a; e=b; f=c; statint=(d+e+f)*(a+b-c); } void floatfloatfloat ( float a, float b, float c ) { register float d, e, f; d=a; e=b; f=c; statfloat=(d+e+f)*(a+b-c); } void floatintfloat ( float a, int b, float c ) { float d, e, f; d=a; e=b; f=c; floatfloatfloat ( d, e, f ); intintint ( a, b, f ); }