注意:此页面搜索的是所有试题
下列程序的运行结果是:
#include
void main()
{
int *p, a;
a=8;
p=&a;
a=*p+10;
printf("a=%d\n",a);
}

参考答案