写出运行结果
main( ) { int a=5, b=7; c = plus(a,b); printf("A+B=%d\n",c); } plus (int x,int y) { int z; z=x+y; return(z); }
Copyright ©