What will be the output of the following program on GCC compiler?

Loading

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

A. 4
B. 5
C. 6
D. 7