What will be the output of the program ?
#include<stdio.h>
int main()
{
int x=30, *y, *z;
y=&x; /* Assume address of x is 500 and integer is 4 byte size *
Z=y)
*y++=+z++;
X++;
printf("x=%d, y=%d, Z=%d", x, y, z);
return 0;
}
Answers
Answered by
0
Answer:
Compile time error will come, as z=y) is not a valid syntax
Answered by
1
Answer:
x=31, y=504, z=504 this is the answer
Similar questions