Below is an exceedingly simple example. It compiles fine using gcc on Mac OS X (Snow Leopard). At runtime it outputs Bus error: 10. What's happening here?
char* a = "abc";
a[0] = 'c';
|
feedback
|
|
Your code sets try this instead:
That creates a char array (in your program's normal data space), and copies the contents of the string literal into your array. Now you should have no trouble making changes to it. | |||
|
feedback
|
|
You are trying to modify a string constant. Use this instead:
| |||||||
feedback
|
|
This
relies on a dangerous implicit conversion from A string literal must not be altered. | |||
|
feedback
|
|
char *a = "abc"; is a constant string stored in the .data section of an ELF binary. You are not allowed to modify this memory and if you do you incur undefined behavior in some cases it will give no error but not modify the memory in your case you get a bus error because you are attempting to access memory that you normally cannot (for writing purposes) | |||||
feedback
|
|
char *str = "string"; In such a case it is treated as a read only literal. It is similar to writing 'const char *str = "string"'. Which is to say that the value pointed to by the pointer 'str' is a constant. Trying to edit will result in BUS ERROR. | |||
|
feedback
|
char a[] = "abc"as a short hand for creating a character array filled with your string. – steabert Sep 20 '11 at 5:40