โช 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;
}