马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 我爱橙 于 2022-3-10 16:57 编辑
已知p,p1为指针变量,a为数组名,j为整型变量,
下列赋值语句中不正确的是
A.p=&j,p=p1;
B.p=a;
C.p=&a[j];
D.p=10; //p是指针变量存放地址,不能赋值整形常量10
A.a[5]=d#include <stdio.h>
#include <math.h>
int main()
{
int a[5],*p,*p1,j;
p=&j,p=p1;
printf("a[5]=d\n",a[5]);
printf("*p=%d\n",*p);
printf("p=%d\n",p);
printf("a[0]=%d\n",a[0]);
return 0;
}
B.#include <stdio.h>
#include <math.h>
int main()
{
int a[5],*p,*p1,j;
p=a;
printf("a[5]=d\n",a[5]);//a[5]=d
printf("*p=%d\n",*p);//*p=0
printf("p=%d\n",p);//p=6487552
printf("a[0]=%d\n",a[0]);//a[0]=0
return 0;
}
C.#include <stdio.h>
#include <math.h>
int main()
{
int a[5],*p,*p1,j;
p=a;
printf("a[5]=d\n",a[5]);//a[5]=d
printf("*p=%d\n",*p);//*p=1
printf("p=%d\n",p);//p=6487536
printf("a[0]=%d\n",a[0]);//a[0]=1
return 0;
}
|