1 2 3 4 5 6 7 8 9 10 | int puts(const char *s);
char Lstr char[] = "hello, world!";
int
main()
{
Lstr[3] = 'x';
puts(Lstr);
}
|
1 2 3 4 5 6 7 8 9 10 | int puts(const char *s);
char Lstr char[] = "hello, world!";
int
main()
{
Lstr[3] = 'x';
puts(Lstr);
}
|