下列定义中P指向的地址可更改,但*P不能够更改的是( )。A.constint*P;B.int*constP;C.constint*constP;D.int*P;
若已有定义int x;下列说明指针变量p指向x的正确语句是( )A. int p=B. int *p=C. int p=x;D. int *p=x;
下列定义中p指向的地址可更改,但*p不能够更改的是A.const int * p;B.int * const p;C.const int * const p;D.int *p;
下列定义中p指向的地址可更改,但 * p不能够更改的是A.const int * p;B.int * const p;C.const int * const p;D.int * p;
下列定义中p指向的地址可更改,但*p不能够更改的是A.const int* p;B.int* const p;C.const int*const p;D.int*p;
下列定义中p指向的地址可更改,但*p不能够更改的是A.const int *p;B.int * const p;C.const int *const p;D.int *p;
定义指向包含4个整型元素的一维数组的行指针的正确形式是()。A.int (*p)[ ]B.int *p[4]C.int *(p[ ] )D.int (*p)[4]
4、下列定义中,()是定义指向数组的指针pA.int *p[5]B.int (*p)[5]C.(int *)p[5]D.int *p[ ]
下列定义中,【 】定义了指向数组的行地址。A.int (*p)[10];B.int (*p)[];C.int *p[10];D.(int *)p[10];