能力值:
( LV2,RANK:10 )
|
-
-
2 楼
pointer_b 没有声明
|
能力值:
( LV6,RANK:90 )
|
-
-
3 楼
#include<stdio.h>
void main()
{
int a,b,c;
int *pointer_a,*pointer_b;
scanf("%d%d",&a,&b);
printf("%d%d",a,b);
pointer_a=&a;
pointer_b=&b;
c=*pointer_a;
*pointer_a=*pointer_b;
*pointer_b=c;
printf("a=%d,b=%d",a,b);
}
|
能力值:
( LV2,RANK:10 )
|
-
-
4 楼
知道了,粗心害死羊啊,感谢前辈的细心知道,谢谢
|
|
|