int main(void) {
char *p = "hello";
char *q = "world";
*p = *q;
printf("%s", *p);
}
I am trying to overwrite hello with world...
|
|
I am trying to overwrite hello with world...
|
|||
|
|
|
|
You're just overwriting the first character of Also, if you want to stick with your original code,
Also, with As Ed said, you cannot overwrite the data stored in |
|||
|
|
|
|
Firstly, your code only tries to overwrite the first character of "Hello" with first character of "World", i.e. it attempts to turn "Hello" into "Wello". Secondly, you are trying to modify a string literal. Sitring litrerals are not modifiable. You can't "overwrite" string literal. Your attempt to overwrite "Hello" with "World" is not much different from an attempt to overwrite For further reading see http://stackoverflow.com/questions/1614723/why-is-this-c-code-causing-a-segmentation-fault/1614739#1614739 Thirdly, in order to print a string with |
||
|
|
|
|
char *p = "hello"; char *q = "world"; the both variables are constant, unchangeable |
||||||||
|
|
|
This line:
Will set the char (singular) pointed to by p to the char pointed to by q. You want |
||||||
|
|
|
Those string literals are stored in readonly memory, in the data section of your executable. You cannot (and should not try) to overwrite that memory. |
||||||||
|