Computer Science, asked by jyothi667, 8 months ago

What is the output?
#include <stdio.h>
void main() {
char str[] = "Hello world";
char *s = str;
s[2] = 'L';
puts(s);

Answers

Answered by prageyarai123
0

Answer:

the output will be nothing because here no printing statement is given

Similar questions