What will be the output of the following program in GCC compiler?

Loading

Choose the correct option.

What will be the output of the following program in GCC compiler?

#include     
int main() {
struct a{
char ch[7];
char *str;
};
struct a s1= {"welcome","india"};
printf("%c %c ", s1.ch[0], *s1.str);
printf("%s %s ", s1.ch, s1.str);
}

A. w i
welcome  india
B. w i
0 0
C.
welcome  i
D. w i
0 india