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