Question: What is the output of the code below? [9pts] #include int main() { int a[] = {10, 2}; int b[] {3, 4}; // Address of

 What is the output of the code below? [9pts] #include int

What is the output of the code below? [9pts] #include int main() { int a[] = {10, 2}; int b[] {3, 4}; // Address of a = Ox100 // Address of b = 0x200 int *x, *y, *z; x = y = a; z = b; 1 2 3. 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 printf("%p printf("%i printf("%i printf("%i %p %i %i %i %p ", x, y, z); %i ", *x, *y, *z); %i ", *x+1, *y+1, *2+1); %i ", *(x+1), *(y+1), *(z+1)); X++; Z++; printf("%i printf("%p %i %p %i ", *x, *y, *2); %p ", x, y, z); return 0; 21 }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!