โช 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;
}
What is the output of the following program on GCC compiler:
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;
}