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 a = 300, b, c;
if(a >= 400)
b = 300;
c = 200;
printf("%d, %d, %d ", a, b, c);
return 0;
}

A. 300, 300, 200
B. Garbage, 300, 200
C. 300, Garbage, 200
D. 300, 300, Garbage