关于指针变量的问题??
#include<stdio.h>void main()
{
void swap(int*pi,int*p2);
int a,b;
int*pointer_1,*pointer_2;
scanf("%d,%d",&a,&b);
pointer_1=&a;pointer_2=&b;
if(a<b) swap(pointer_1,pointer_2);
printf("\n%d,%d\n",a,b);
}
void swap(int*p1,int*p2)
{
int temp;
temp=*p1;
*p1=*p2;
*p2=temp;
getch();
}
为什么这个程序无法运行呢?
输入a和b,确不能比较大小呢???