63. Pointer-i

Question.4

A developer walks through an int array using a char* pointer:

int data[3] = {0x11223344, 0x55667788, 0xAABBCCDD};
char *p = (char *)data;
p += 4;
printf("0x%X", *(int *)p);

On a little-endian 32-bit system, what does this print?

Need Help? Refer to the Quick Guide below

Select Answer

Restart quiz!