โช Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
int main() {
int a = 300, b, c;
if(a >= 400)
b = 300;
c = 200;
printf("%d, %d, %d ", a, b, c);
return 0;
}