Home » C Programming » Pointers » Question
  1. Calling a function fun with num an array variable num[3] where num is an array, is equivalent to __________.
    1. fun(3[num])
    2. fun(num[3])
    3. fun(*(num + 3))
    4. All of above
    5. None of these
Correct Option: D

Option A, B and C is equivalent.



Your comments will be displayed only after manual approval.