Question 4
Consider the below C program.
#include <stdio.h>
int main() { int x = 1, y = 2, z = 0; if (z == 1) y++; x--;
if (x > 1) x--; z++;
printf("%d %d %d", x, y, z); return 0;}What will be the output of the above program?
0 3 0
0 2 1
1 2 0
1 2 1