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