用指针输出大数在前,小数在后
比较a,b,先输出大数,后输出小数。我这里写的程序哪里错了,怎么输出结果总是小数在前,大数在后?
#include<stdio.h>
#include<string.h>
int main()
{
void swap(int *p1,int *p2);
int a,b;
int *x,*y;
scanf("%d%d",&a,&b);
x=&a;
y=&b;
if(a<b)
swap(x,y);
printf("a=%d,b=%d\n",*x,*y);
return 0;
}
void swap(int *p1,int *p2)
{
int *p;
p=p1;
p1=p2;
p2=p;
}