写出运行结果
main( ) { int i ; for (i=0; i<3; i++) { add( ); } } add( ) { static int x=0; x++; printf("%d ",x); }
Copyright ©