Question: 5.4 What will the following C code print on a little-endian machine like the x86? What will it print on a big-endian machine? unsigned
5.4 What will the following C code print on a little-endian machine like the x86? What will it print on a big-endian machine? unsigned short n = 0x1234; // 16 bits unsigned char *p (unsigned char *) &n; printf("%d ", "p);
Step by Step Solution
There are 3 Steps involved in it
Answer In the given C code we have an unsigned short variable n initialized to the hex... View full answer
Get step-by-step solutions from verified subject matter experts
