#include int fun ( int width ); int main ( void ) { int i; i = fun ( NULL ); //违背1 return ( 0 ); } int fun ( int width ) { int w; w = width - 10; return w; }