What is the output of the following program on GCC compiler?

Loading

โœช Choose the correct option.

What is the output of the following program on GCC compiler?

#include  
int main() {
int a[5] = {2, 3};
printf("%d, %d, %d ", a[2], a[3], a[4]);
return 0;
}

A. Garbage values
B. 0 0 0
C. 36587
D. 37290