'swap' was not declared in this scope 求C语言大神帮忙,我不是已经定义void了吗?
#include<stdio.h>intmain(){voidswap(int*qa,int*qb){inttemp;temp=*qa;*qa=*qb;*qb=temp;...
#include <stdio.h>
int main(){
void swap(int *qa,int *qb)
{
int temp;
temp=*qa;
*qa=*qb;
*qb=temp;
}
int a,b,*pa=&a,*pb=&b;
scanf("%d%d",pa,pb);
printf("%d,%d\n",a,b);
swap(pa,pb);
printf("%d,%d",a,b);
return 0;
} 展开
int main(){
void swap(int *qa,int *qb)
{
int temp;
temp=*qa;
*qa=*qb;
*qb=temp;
}
int a,b,*pa=&a,*pb=&b;
scanf("%d%d",pa,pb);
printf("%d,%d\n",a,b);
swap(pa,pb);
printf("%d,%d",a,b);
return 0;
} 展开
推荐于2018-04-04 · 知道合伙人数码行家
stlily2008
知道合伙人数码行家
向TA提问 私信TA
知道合伙人数码行家
采纳数:627
获赞数:2806
大学本科毕业于桂林电子工业学院,硕士毕业于广东工业大学。在电力建设行业从事计算机管理及施工管理10多年
向TA提问 私信TA
关注
展开全部
#include <stdio.h>
// int main(){ 这行去掉,移动到下面 。不能在主函数里面定义函数!!
void swap(int *qa,int *qb)
{
int temp;
temp=*qa;
*qa=*qb;
*qb=temp;
}
int main(){ // 把上面第二行移动到这里来。
int a,b,*pa=&a,*pb=&b;
scanf("%d%d",pa,pb);
printf("%d,%d\n",a,b);
swap(pa,pb);
printf("%d,%d",a,b);
return 0;
}
追问
谢谢了,还想问问pa不是指针吗也就是说pa是地址啊,那scanf("%d%d",pa,pb);这句是输入地址的意思?如果是输入内容不是要在pa前加*吗?
追答
pa是地址指针,你已经设置了
你在定义 *pa 的时候,同时给他赋值了,让它指向了a的地址。
所以,scanf("%d%d",pa,pb); 等同于 scanf("%d%d",&a,&b);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询