int a=5; int b=7;main(){int a=4,b=5,c;c=plus(a,b);printf(“A+B=%d\n”,c);}plus(int x,int y){int z;z=x+y;return(z);}
要多plus进行声明
plus是自定义函数不是系统函数,需要用户自己写