Please wait...
THANKU FOR BEING A PART OF OUR JOURNEY TO BRING "REVOLUTION IN EDUCATION"
We Genuinely APPRECIATE your PATIENCE

34
M: +1.00/-0.33

Consider the following function implemented in C:
void printxy (int x, int y) {
int *ptr;
x = 0;
ptr = &x;
y = * ptr;
* ptr = 1;
printf (“%d, %d,” x, y);
}


The output of invoking printxy (1, 1) is

[GATE CS 2017 Set 2]
A
B
C
D