Suppose sizeof(int) is 4, and each location in memory holds…
Suppose sizeof(int) is 4, and each location in memory holds 4 bytes. What is printed by the following program? Include 0x in your answer. int main() { int a = 0x6464; int *b = &a; // &a = 0x500DB4 int *c = b + 2; printf(“b = %p\n”, b); printf(“c = %p\n”, c); } Your answer:
Read Details