若有定义:int a[10],*p; 则*(p+5)表示()。
A: 元素a[5]的值
B: 元素a[5]的地址
C: 元素a[6]的值
D: 元素a[6]的地址
A: 元素a[5]的值
B: 元素a[5]的地址
C: 元素a[6]的值
D: 元素a[6]的地址
举一反三
- 若有以下定义,int a[10],int *p=a;则p+5表示( ) A: 元素a[5]的地址 B: 元素a[5]的值 C: 元素a[6]的地址 D: 元素a[6]的值
- 若有下面定义,则p+5表示( )int a[10], *p=a; A: 元素a[5]的地址 B: 元素a[5]的值 C: 元素a[6]的值 D: 元素a[6]的地址
- 若有定义inta[10],*p=a;则*(p+5)表示_____。 A: 元素a[5]的地址 B: 元素a[5] C: 元素a[6]的地址 D: 元素a[6]
- 【单选题】若有定义“inta[10],p=a;”,则p+5表示( A. 元素a[5]的地址 B. 元素a[5]的值 C. 元素A[6]的值 D. 元素a[6]的地址
- 若有定义:int x[10], *p=x;,则*(p+5)表示:( )。 A: 数组元素x[5]的地址 B: 数组元素x[5]的值 C: 数组元素x[6]的地址 D: 数组元素x[6]的值