✪ 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);
}