โช Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
int main() {
int i=2;
int j = i + (1, 2, 3, 4, 5);
printf("%d ", j);
return 0;
}
What will be the output of the following program on GCC compiler?
What will be the output of the following program on GCC compiler?
#include
int main() {
int i=2;
int j = i + (1, 2, 3, 4, 5);
printf("%d ", j);
return 0;
}