Folks, I have basic and simple question on pointers. The below is code is giving a segmentation fault.
int main()
{
char *str = "hello, world\n";
char *strc = "good morning\n";
strcpy(strc, str);
printf("%s\n", strc);
return 0;
}
Can't we copy from pointer to other.
- if i have char *strc = "good morning\n", can't i do like this strc[5] = '.';. Why this also giving a seg fault.
You may not change string literals. It is what you are trying to do in statement
that is you are trying to overwrite string literal "good morning\n" pointed to by pointer
strc
.Of cource you may use pointers in function strcpy. The valid code can look like
Or