What is the meaning of the following statement in C

Viewed 33

If list[][10] is a two-dimensional array then what is the meaning of the following statement? Let base address of the array be 1000.

Write the meaning:

  1. *(list + 1)
  2. *(list + 1) + 1
  3. *(*list +1) +1)
  4. *((list + 1) +1)
  5. ((list + 1) +1)
0 Answers
Related