Is it possible to modify a string of char in C? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T14:18:49Z http://stackoverflow.com/feeds/question/1011455 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1011455/is-it-possible-to-modify-a-string-of-char-in-c 4 Is it possible to modify a string of char in C? John Baker 2009-06-18T08:27:36Z 2009-06-18T13:37:52Z <p>I have been struggling for a few hours with all sorts of C tutorials and books related to pointers but what I really want to know is if it's possible to change a char pointer once it's been created.</p> <p>This is what I have tried:</p> <pre><code>char *a = "This is a string"; char *b = "new string"; a[2] = b[1]; // Causes a segment fault *b[2] = b[1]; // This almost seems like it would work but the compiler throws an error. </code></pre> <p>So is there any way to change the values inside the strings rather than the pointer addresses?</p> <p>Thanks</p> <p>EDIT:</p> <p>Thanks everyone for your answers. It makes more sense now. It especially makes sense why sometimes it was working fine and other times not working. Because sometimes I'd pass a char pointer and other times a char array (the char array worked fine).</p> http://stackoverflow.com/questions/1011455/is-it-possible-to-modify-a-string-of-char-in-c/1011470#1011470 1 Answer by sharptooth for Is it possible to modify a string of char in C? sharptooth 2009-06-18T08:30:05Z 2009-06-18T09:38:34Z <p>You need to copy the string into another, not read-only memory buffer and modify it there. Use strncpy() for copying the string, strlen() for detecting string length, malloc() and free() for dynamically allocating a buffer for the new string.</p> <p>For example (C++ like pseudocode):</p> <pre><code>int stringLength = strlen( sourceString ); char* newBuffer = malloc( stringLength + 1 ); // you should check if newBuffer is 0 here to test for memory allocaton failure - omitted strncpy( newBuffer, sourceString, stringLength ); newBuffer[stringLength] = 0; // you can now modify the contents of newBuffer freely free( newBuffer ); newBuffer = 0; </code></pre> http://stackoverflow.com/questions/1011455/is-it-possible-to-modify-a-string-of-char-in-c/1011481#1011481 6 Answer by Jonathan Maddison for Is it possible to modify a string of char in C? Jonathan Maddison 2009-06-18T08:31:55Z 2009-06-18T08:51:00Z <p>No, you cannot modify it, as the string can be stored in read-only memory. If you want to modify it, you can use an array instead e.g.</p> <pre><code>char a[] = "This is a string"; </code></pre> <p>Or alternately, you could allocate memory using malloc e.g.</p> <pre><code>char *a = malloc(100); strcpy(a, "This is a string"); free(a); // deallocate memory once you've done </code></pre> http://stackoverflow.com/questions/1011455/is-it-possible-to-modify-a-string-of-char-in-c/1011493#1011493 4 Answer by Naveen for Is it possible to modify a string of char in C? Naveen 2009-06-18T08:34:39Z 2009-06-18T08:34:39Z <p>The memory for a &amp; b is not allocated by you. The compiler is free to choose a read-only memory location to store the characters. So if you try to change it may result in seg fault. So I suggest you to create a character array yourself. Something like: <code>char a[10]; strcpy(a, "Hello");</code></p> http://stackoverflow.com/questions/1011455/is-it-possible-to-modify-a-string-of-char-in-c/1011545#1011545 16 Answer by Carson Myers for Is it possible to modify a string of char in C? Carson Myers 2009-06-18T08:47:22Z 2009-06-18T09:06:18Z <p>When you write a "string" in your source code, it gets written directly into the executable because that value needs to be known at compile time (there are tools available to pull software apart and find all the plain text strings in them). When you write <code>char *a = "This is a string"</code>, the location of "This is a string" is in the executable, and the location a points to, is in the executable. The data in the executable image is read-only.</p> <p>What you need to do (as the other answers have pointed out) is create that memory in a location that is not read only--on the heap, or in the stack frame. If you declare a local array, then space is made on the stack for each element of that array, and the string literal (which is stored in the executable) is copied to that space in the stack.</p> <pre><code>char a[] = "This is a string"; </code></pre> <p>you can also copy that data manually by allocating some memory on the heap, and then using <code>strcpy()</code> to copy a string literal into that space.</p> <pre><code>char *a = malloc(256); strcpy(a, "This is a string"); </code></pre> <p>Whenever you allocate space using <code>malloc()</code> remember to call <code>free()</code> when you are finished with it (read: memory leak).</p> <p>Basically, you have to keep track of where your data is. Whenever you write a string in your source, that string is read only (otherwise you would be potentially changing the behavior of the executable--imagine if you wrote <code>char *a = "hello";</code> and then changed <code>a[0]</code> to <code>'c'</code>. Then somewhere else wrote <code>printf("hello");</code>. If you were allowed to change the first character of <code>"hello"</code>, and your compiler only stored it once (it should), then <code>printf("hello");</code> would output <code>cello</code>!)</p> http://stackoverflow.com/questions/1011455/is-it-possible-to-modify-a-string-of-char-in-c/1011582#1011582 0 Answer by luca for Is it possible to modify a string of char in C? luca 2009-06-18T08:55:49Z 2009-06-18T09:39:21Z <pre><code>char *a = "stack overflow"; char *b = "new string, it's real"; int d = strlen(a); b = malloc(d * sizeof(char)); b = strcpy(b,a); printf("%s %s\n", a, b); </code></pre> http://stackoverflow.com/questions/1011455/is-it-possible-to-modify-a-string-of-char-in-c/1012353#1012353 0 Answer by Jeff Ober for Is it possible to modify a string of char in C? Jeff Ober 2009-06-18T12:23:56Z 2009-06-18T12:23:56Z <p>A lot of folks get confused about the difference between char* and char[] in conjunction with string literals in C. When you write:</p> <pre><code>char *foo = "hello world"; </code></pre> <p>...you are actually pointing foo to a constant block of memory (in fact, what the compiler does with "hello world" in this instance is implementation-dependent.)</p> <p>Using char[] instead tells the compiler that you want to create an array and fill it with the contents, "hello world". foo is the a pointer to the first index of the char array. They both are char pointers, but only char[] will point to a locally allocated and mutable block of memory.</p> http://stackoverflow.com/questions/1011455/is-it-possible-to-modify-a-string-of-char-in-c/1012661#1012661 0 Answer by Sweeney for Is it possible to modify a string of char in C? Sweeney 2009-06-18T13:37:52Z 2009-06-18T13:37:52Z <p>It seems like your question has been answered but now you might wonder why char *a = "String" is stored in read-only memory. Well, it is actually left undefined by the c99 standard but most compilers choose to it this way for instances like:</p> <pre><code>printf("Hello, World\n"); </code></pre> <p><a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=1&amp;url=http%3A%2F%2Fwww.open-std.org%2FJTC1%2FSC22%2FWG14%2Fwww%2Fdocs%2Fn1124.pdf&amp;ei=oEA6SuD6IqKqtgeY1v3TDA&amp;usg=AFQjCNHfDjr8heM10SbpMcifDB02qFA48g&amp;sig2=z-pRltAqpZGNE7QrptV23w" rel="nofollow">c99 standard(pdf)</a> [page 130, section 6.7.8]:</p> <p>The declaration:</p> <pre><code>char s[] = "abc", t[3] = "abc"; </code></pre> <p>defines "plain" char array objects s and t whose elements are initialized with character string literals. This declaration is identical to char </p> <pre><code>s[] = { 'a', 'b', 'c', '\0' }, t[] = { 'a', 'b', 'c' }; </code></pre> <p>The contents of the arrays are modifiable. On the other hand, the declaration</p> <pre><code>char *p = "abc"; </code></pre> <p>defines p with type "pointer to char" and initializes it to point to an object with type "array of char" with length 4 whose elements are initialized with a character string literal. If an attempt is made to use p to modify the contents of the array, the behavior is undefined.</p>