Multiple choice

Which of the following statements indicates the base address of an array-named list to be passed as an argument in a function?

  1. list[1]

  2. list[2]

  3. list

  4. none of these

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

The name of the array when passed as an argument refers to the base address of the array in the memory.