What will be the output of the following program on GCC compiler?

Loading

โœช Choose the correct option.

What will be the output of the following program on GCC compiler?

#include  
int main() {
int i=-3, j=2, k=0, m;
m = ++i && ++j || ++k;
printf("%d, %d, %d, %d ", i, j, k, m);
return 0;
}

A. 1, 2, 0, 1
B. -2, 3, 0, 1
C. 3, 2, 0, 1
D. 2, 3, 1, 1