main()
{int a=2,b=5;
swap(a,b);/*函数调用*/
printf(“a=%d,b=%d”,a,b);
}
void swap(int,int);/*原型声明*/
printf(“a