What will be the output of the following C code?
#include
int main()
{
char str[11] = "hello";
char *str1 = "world";
strcat(str, str1);
printf("%s %d", str, str[10]);
}
Answer: A
No answer description available for this question.