What is the output of the following program on GCC compiler?

Loading

Choose the correct option.

What is the output of the following program on GCC compiler?

#include   
int main() {
struct emp {
char name[20];
int age;
long phone;
};
struct emp e = {"Tiger"};
printf("%s %d %d ", e.name,e.age, e.phone);
return 0;
}

A. Tiger 0  0
B. 0  0  0
C. compiler Error
D. None of the Above