GATE | CS | 2022 | C Programming | Pointers | Question 22

Last Updated :
Discuss
Comments

What is printed by the following ANSI C program? 

#include<stdio.h> 
int main(int argc, char *argv[])
{
int x = 1, z[2] = {10, 11};
int *p = NULL;
p = &x;
*p = 10;
p = &z[1];
*(&z[0] + 1) += 3;
printf("%d, %d, %d\n", x, z[0], z[1]);
return 0;
}

1, 10, 11 

1, 10, 14 

10, 14, 11

10, 10, 14 

Share your thoughts in the comments