指针 和调用函数的问题。求指教
#include<stdio.h>int main()
{
void exchange(int *q1,int *q2,int *q3);
int a,b,c,*p1,*p2,*p3;
scanf("%d%d%d",&a,&b,&c);
/*p1=&a;
p2=&b;
p3=&c;
exchange(p1,p2,p3);*/
exchange(a,b,c); //调用exchange函数时 不用指针作赋值 直接 用a,b,c 怎么不对
printf("%d,%d,%d",a,b,c);
return 0;
}
void exchange(int *q1,int *q2,int *q3)
{
void swap(int *w1,int *w2);
if(*q1>*q2)
swap(q1,q2);
if(*q1>*q3)
swap(q1,q3);
if(*q2>*q3)
swap(q2,q3);
}
void swap(int *w1,int *w2)
{
int t;
t=*w1;
*w1=*w2;
*w2=t;
}