โช Choose the correct option.
What will be the output of the following program on GCC?
#include
int message();
int main() {
int x,y,z;
x=y=z=-1;
z=++x && ++y || ++z;
printf(" x=%d y=%d z=%d ", x,y,z);
return 0;
}
What will be the output of the following program on GCC?
What will be the output of the following program on GCC?
#include
int message();
int main() {
int x,y,z;
x=y=z=-1;
z=++x && ++y || ++z;
printf(" x=%d y=%d z=%d ", x,y,z);
return 0;
}