โช Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
#define MAN(x, y) ((x)>(y)) ? (x):(y);
int main() {
int i=10, j=5, k=0;
k = MAN(++i, j++);
printf("%d, %d, %d ", i, j, k);
return 0;
}