What will be the output of the program ? #include void main() { char str[20] = "hello"; char *const p=str; *p='m'; printf("%s\n", str); }?
Answers
Answered by
4
output should not be there because you coding is wrong
Similar questions