1
What will be the output of the following C code?
#include <stdio.h>
int main()
{
char *str = "hello, world\n";
str[5] = '.';
printf("%s\n", str);
return 0;
} Answer & Solution
Answer: Option
D
No explanation is given for this question. Let's Discuss on Board