โช 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;
}