void func ( int para ) { int i = para + 1; //... } int main ( void ) { int local = 0; func ( local ); //遵循1 return ( 0 ); }