What is the output of the following program on GCC compiler:

Loading

โœช Choose the correct option.

What is the output of the following program on GCC compiler:

#include

int main() {
int a = 5, b = 10;
a = a-- + --b;
b = b-- + --a;
printf("%d, %d", a, b);
return 0;
}

A. 14, 22
B. 13, 22
C. 14, 23
D. 13, 23