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 emp{
char name[10];
int age;
float b;
};
struct emp e;
e.name="ram";
e.age=25;
printf("%s %d ",e.name,e.age);
return 0;
}

A. ram 25
B. garbage value 25
C. r 25
D. compiler error