What will be the output of the following program on GCC?

		
					

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC?

#include 
int main(){
int k=35,*z,*y;
// Let address of k=500
z=&k;
y=z;
*z++=*y++;
k++;
printf("k=%d z=%d y=%d ",k,z,y);
return 0;
}

A. k=36 z=501 y=501
B. k=36 z=504 y=504
C. k=35 z=501 y=501
D. compiler error