Multiple choice

int num[ ] = {24,32,12,44,56,17}, *(num +0) refers to

  1. 12

  2. 32

  3. 24

  4. none of these

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The expression *(num + 0) is equivalent to num[0]. In the array {24, 32, 12, 44, 56, 17}, the element at index 0 is 24.