vote up 1 vote down star
int main(void) {
    char *p = "hello";
    char *q = "world";
    *p = *q;
    printf("%s", *p);
}

I am trying to overwrite hello with world...

flag

40% accept rate

5 Answers

vote up 10 vote down check

You're just overwriting the first character of hello, i.e. h with the first character of world, i.e. w.

Also, if you want to stick with your original code,

p = q;
printf("%s", p);

Also, with p = q you are not overwriting anything. p now points to the first character of world.

As Ed said, you cannot overwrite the data stored in p with the data in q.

link|flag
vote up 1 vote down

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 5 with 8 by doing 5 = 8.

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 printf you have to pass a pointer to the first character, not the first character itself. Your printf should look as printf("%s", p)

link|flag
vote up 0 vote down

char *p = "hello"; char *q = "world"; the both variables are constant, unchangeable

link|flag
That's not true. The variables are not const, what they point to is. – Ed Swangren Nov 5 at 2:21
Even that is not true. String literals in C are not constant (by type). They are simply non-modifiable. This is not exactly the same thing. – AndreyT Nov 5 at 2:23
I meant the content p and q refer is constant, you cannot change the content – Macroideal Nov 5 at 3:20
but you say that 'both variables are const', which is semantically meaningful in C. @Andrey: Yes, I was thinking more conceptually, but I should have said that they point to readonly memory. – Ed Swangren Nov 5 at 4:02
vote up 5 vote down

This line:

*p = *q;

Will set the char (singular) pointed to by p to the char pointed to by q.

You want strncpy if you want to copy strings. (Although see Ed's comment about the read-only nature of the strings in your code).

link|flag
2  
For the record, *cpy() functions won't help here because the data is stored in read-only memory. But +1 for explaining the error in his logic. – Chris Lutz Nov 5 at 2:19
Correct - I made the assumption that it was a basic pointer question. (Initially I didn't see the data section problem - C# has made me soft) – geofftnz Nov 5 at 22:39
vote up 11 vote down

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.

link|flag
3  
There ya go, 10k. – GMan Nov 5 at 2:33
1  
And it's a misfeature of C (for legacy reasons) that string literals have type char * instead of const char *. – Steve Jessop Nov 5 at 2:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.