What is the output?
#include <stdio.h>
void main() {
char str[] = "Hello world";
char *s = str;
s[2] = 'L';
puts(s);
Answers
Answered by
0
Answer:
the output will be nothing because here no printing statement is given
Similar questions