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