Segmentation fault occurring when modifying a string using pointers?

42,143

Solution 1

One problem lies with the parameter you pass to the function:

char *string = "foobar";

This is a static string allocated in the read-only portion. When you try to overwrite it with

*end = *begin;

you'll get the segfault.

Try with

char string[] = "foobar";

and you should notice a difference.

The key point is that in the first case the string exists in the read-only segment and just a pointer to it is used while in the second case an array of chars with the proper size is reserved on the stack and the static string (which always exists) is copied into it. After that you're free to modify the content of the array.

Solution 2

You can also utilize the null character at the end of a string in order to swap characters within a string, thereby avoiding the use of any extra space. Here is the code:

#include <stdio.h>

void reverse(char *str){    
    int length=0,i=0;

    while(str[i++]!='\0')
        length++;

    for(i=0;i<length/2;i++){
        str[length]=str[i];
        str[i]=str[length-i-1];
        str[length-i-1]=str[length];
    }

    str[length]='\0';
}

int main(int argc, char *argv[]){

    reverse(argv[1]);

    return 0;
}

Solution 3

In your code you have the following:

*end--;
*begin++;

It is only pure luck that this does the correct thing (actually, the reason is operator precedence). It looks like you intended the code to actually do

(*end)--;
(*begin)++;

Which is entirely wrong. The way you have it, the operations happen as

  • decrement end and then dereference it
  • increment begin and then dereference it

In both cases the dereference is superfluous and should be removed. You probably intended the behavior to be

end--;
begin++;

These are the things that drive a developer batty because they are so hard to track down.

Solution 4

This would be in place and using pointers

 #include<stdio.h>
 #include<string.h>
 #include<stdlib.h>

 void reve(char *s)
 {
    for(char *end = s + (strlen(s) - 1); end > s ; --end, ++s)
    {
        (*s) ^= (*end);
        (*end) ^= (*s);
        (*s) ^= (*end);
    }
 }

int main(void)
{
    char *c = malloc(sizeof(char *) * 250);
    scanf("%s", c);
    reve(c);
    printf("\nReverse String %s", c);
}

Solution 5

Change char *string = "foobar"; to char string[] = "foobar";. The problem is that a char * points to read only memory which you then try to modify causing a segmentation fault.

Share:
42,143
brice
Author by

brice

I am a software engineer and entrepreneur living and working in the UK. I'm interested in Functional, Dataflow, and Functional-reactive programming, polyglot frameworks and data-centric design. You can find out more on github, or on twitter @fractallambda The many pow()s of Python AES in C and Java Reading from Mongo, processing with Hadoop, writing to SQL Memory allocation in C and source material for answer Sending raw Ethernet frames with Python

Updated on July 09, 2022

Comments

  • brice
    brice almost 2 years

    Context

    I'm learning C, and I'm trying to reverse a string in place using pointers. (I know you can use an array; this is more about learning about pointers.)

    Problem

    I keep getting segmentation faults when trying to run the code below. GCC seems not to like the *end = *begin; line. Why is that?

    Especially since my code is nearly identical to the non-evil C function already discussed in another question

    #include <stdio.h>
    #include <string.h>
    
    void my_strrev(char* begin){
        char temp;
        char* end;
        end = begin + strlen(begin) - 1;
    
        while(end>begin){
            temp = *end;
            *end = *begin;
            *begin = temp;
            end--;
            begin++;
        }
    }
    
    main(){
        char *string = "foobar";
        my_strrev(string);
        printf("%s", string);
    }
    
  • x4u
    x4u over 14 years
    Something like char *string = strdup( "foobar" ); would work.
  • brice
    brice over 14 years
    Thanks a lot Remo.D. That's it!
  • Remo.D
    Remo.D over 14 years
    @x4u. Yes but you should free the memory returned by strdup() when done. Not important in this case, I admit, but still I wouldn't suggest using strdup() unless it's the only sensible option.
  • Remo.D
    Remo.D over 14 years
    @brice: yw :) What do you mean about reading from the read only memory?
  • brice
    brice over 14 years
    @Remo.D: I had no idea that char str[] and char *str would be different. I had the impression that they would create exactly the same object in memory, so I'm going to have to get my google-foo on and learn some more! There's a good discussion here: stackoverflow.com/questions/1704407/…
  • michelson
    michelson over 14 years
    Just to be perfectly clear, char *s = "blah" allocates storage for 5 characters somewhere that may or may not be read-only. In most cases the storage is in a read-only segment of memory alongside the machine code for the program instructions. On the other hand, char s[] = "blah"; allocates a modifiable array of 5 characters on the stack (i.e., local storage). This is always modifiable. Take a look at (stackoverflow.com/questions/2036096/…) for more details about literal strings.
  • brice
    brice over 14 years
    got it: Kernighan & Richie, chapter 5.5, page 104, 2d edition, The C programming Language. "the pointer may be subsequently modified to point elsewhere, but the result is undefined if you try to modify the string contents."
  • brice
    brice over 14 years
    Thanks for catching that. Edited it out.