首页上一页 1 下一页尾页 4 条记录 1/1页
为什么运行完是相同的数?
发表在C语言图书答疑
2012-11-16
是否精华
是
否
版块置顶:
是
否
#include <stdio.h>
int main ()
{
int *p,q;
p=&q;
printf("please input : \n");
scanf("%d",p);
printf("the number is : \n");
printf("%d\n",q);
return 0;
}
please input :12
the number is :12
书上233页,我这个地方没有看明白,为什么给指针变量一个12,最后q显示的也是12呢,p是地址值,没有给q赋值啊,怎么会显示12呢
int main ()
{
int *p,q;
p=&q;
printf("please input : \n");
scanf("%d",p);
printf("the number is : \n");
printf("%d\n",q);
return 0;
}
please input :12
the number is :12
书上233页,我这个地方没有看明白,为什么给指针变量一个12,最后q显示的也是12呢,p是地址值,没有给q赋值啊,怎么会显示12呢