Computer Science, asked by abhishekmishra7874, 1 year ago

What will be the output of the program ? #include int main() { char str[20] = "hello"; char *const p=str; *p='m'; printf("%s\n", str); return 0; }?

Answers

Answered by sanukj
0
mello

this will be the output for this program
Similar questions