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

    内容

    • 0

      若有定义int a[9],*p=a;,则p+5表示 A: A) 数组元素a[5]的值 B: B) 数组元素a[5]的地址 C: C) 数组元素a[6]的地址 D: D) 数组元素a[0]的值加上5

    • 1

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

    • 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

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