Multiple choice num[i] is same as *(num+i) *num+I *i+num none of these Reveal answer Fill a bubble to check yourself A Correct answer Explanation In C, array indexing num[i] is defined as *(num + i), which adds the offset i to the base address of the array and dereferences it.