โช Choose the correct option.
What will be the output of the following program on GCC compiler?
#include
int main() {
char str1[] = "Logic";
char str2[] = "Try";
char *s1 = str1, *s2=str2;
while(*s1++ = *s2++){
printf("%s", str1);
}
return 0;
}