指针变量作为函数参数 是怎样反回值的
#include "stdio.h"int main()
{void swap(int *p1,int *p2);
int a,b;
int *pp1,*pp2;
scanf("%d,%d",&a,&b);
pp1=&a;
pp2=&b;
if (a<b) swap(pp1,pp2);
printf("max=%d",min=%d\n,a,b);
return 0;
}
void swap(int *p1,int *p2)
{int temp;
temp=*p1;
*p1=*p2;
*p2=temp;
}