猿问

这段代码哪里有问题?

#include <stdio.h>

void main()

{

int a,b;

int *pointer_1,*pointer_2;

a=100;

b=10;

pointer_1=&a;

pointer_2=&b;

printf("%d,%d\n",a,b);

printf("%d,%d\n",*pointer_1,*pointer_2);

printf("%d,%d\n",pointer_1,pointer_2);

}


weixin_慕数据6378049
浏览 1295回答 3
3回答

望远

#include <stdio.h> int main() { int a,b; int *pointer_1,*pointer_2; a=100; b=10; pointer_1=&a; pointer_2=&b; printf("%d,%d\n",a,b); printf("%d,%d\n",*pointer_1,*pointer_2); printf("%d,%d\n",pointer_1,pointer_2); return 0; }

望远

有问题吗?你最后输出的是变量a.b的地址。
随时随地看视频慕课网APP
我要回答