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

		
					

Loading

โœช Choose the correct option.

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

#include 
int main(){
struct{
char name[10];
char language[10];
}a;
static struct a={"Ram","C"};
printf("%s %s ",a.name,a.language);
return 0;
}

A. Ram C
B. Ram c
C. garbage value C
D. compiler error