โช Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
int main() {
int x=30, *y, *z;
y = &x; /* Assume address of x is 500 */
z = y;
*y= *z;
x++;
printf("x=%d, y=%u, z=%u ", x, *y, z);
return 0;
}