Warning: implode(): Invalid arguments passed in /www/wwwroot/jobquiz.info/mdiscuss.php on line 336 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\n", x, y, z); return 0; } ?->(Show Answer!)
1. 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\n", x, y, z); return 0; }