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