题目内容

Pointer variables can point to variables, but not array elements.

查看答案
更多问题

If the initial value of p is & a[0], then p+I and a+I are the addresses of array elements a[i]

If there is the following definition: int x[10],*pt=x; The correct reference to an x array element is ( )

A. *&x[10]
B. *(x+3)
C. *(pt+10)
D. pt+3

Address is vividly called "pointer".

The variable that holds the address of the variable is a pointer variable.

答案查题题库