63. Pointer-i

Question.3

On a 32-bit platform where sizeof(int) = 4:

int arr[4] = {10, 20, 30, 40};
int *p = arr;
p += 2;
printf("%d", *p);

What is the output?

Need Help? Refer to the Quick Guide below

Select Answer

Restart quiz!