猿问
c语言…………
求助
随便啦czq
浏览 1070
回答 1
1回答
慕沐4449596
#include<stdio.h>void swap(int *pa,int *pb);int main(){ int a,b; int *A,*B; A=&a; B=&b; scanf("%d %d",A,B); swap(A,B); printf("a=%d b=%d\n",a,b); return 0;}void swap(int *pa,int *pb){ int temp; temp=*pa; *pa=*pb; *pb=temp;}
0
0
0
随时随地看视频
慕课网APP
相关分类
C
typedef入门问题
1 回答
我要回答