• 2022-05-28
    若有以下定义,int a[10],int *p=a;则p+5表示( )
    A: 元素a[5]的地址
    B: 元素a[5]的值
    C: 元素a[6]的地址
    D: 元素a[6]的值
  • A

    内容

    • 0

      若有定义int a[10],*p=a,则p+4表示 A: 元素a[4]的地址 B: 元素a[4]的值 C: 元素a[5]的地址 D: 元素a[5]的值

    • 1

      【单选题】若有定义“inta[10],p=a;”,则p+5表示( A. 元素a[5]的地址 B. 元素a[5]的值 C. 元素A[6]的值 D. 元素a[6]的地址

    • 2

      若有以下定义,则p+6表示()int a[10],*p=a; A: 元素a[6]的地址 B: 元素a[6]的值 C: 元素a[7]的地址 D: 元素a[7]的值

    • 3

      若有定义“int a[10],*p=a;”,则p+5表示()。 A: a[5]的地址 B: a[5]的值 C: a[4]的地址 D: a[6]的值

    • 4

      若有以下定义,则*(p+5)表示( )。int a[10],*p=a; A: &a[5] B: a[5] C: &a[6] D: a[6]