✪ Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
#include
int main() {
struct emp{
char name[20];
int age;
struct add{
char city[20];
long int pin;
}a;
}e={"vikash", 25, "bangalore",560068};
printf("%s %s ", e.name, e.a.city);
return 0;
}