Question.3
On a 32-bit platform where sizeof(int) = 4:
sizeof(int) = 4
int arr[4] = {10, 20, 30, 40}; int *p = arr; p += 2; printf("%d", *p);
What is the output?
Select Answer
20
30
12
Address of arr[2]
arr[2]