int main()
{
        char *temp = "Paras";

        int i;
        i=0;

        temp[3]='F';

        for (i =0 ; i < 5 ; i++ )
                printf("%c\n", temp[i]);

        return 0;
}

Why temp[3]='F'; will cause segmentation fault since temp is not const?

link|improve this question
2  
Because your C/OS implementation is generous and immediately terminating the program when you invoke undefined behavior rather than conjuring demonic forces upon your nose. – R.. Nov 20 '10 at 3:43
feedback

5 Answers

up vote 7 down vote accepted

You are not allowed to modify string literals.

link|improve this answer
But temp is not const – cse Nov 20 '10 at 3:15
Yeah. And I think compilers should warn you about that, but gcc, for example, doesn't. Either way, the standard allows the compiler to put string constants into read only memory. – sharth Nov 20 '10 at 3:16
Then why char temp[6] = "Paras"; works? – cse Nov 20 '10 at 3:25
5  
@cse char *temp = "Paras" means temp is pointing to a string literal. Attempting to modify a string literal is undefined. securecoding.cert.org/confluence/display/seccode/… char temp[6] = "Paras"; does something completely different - it creates an array (not a pointer, and not constant) and copies the string literal into that array. – David Gelhar Nov 20 '10 at 3:27
feedback

Because it really is const:

$ g++ example.cpp
example.cpp: In function ‘int main()’:
example.cpp:3: warning: deprecated conversion from string constant to ‘char*’
link|improve this answer
3  
The question is about C. – Matthew Flaschen Nov 20 '10 at 3:32
feedback

*temp is defined as a pointer to a constant (sometimes called a string literal - especially in other languages).

Therefore the line with the error is trying to change the third character of this constant.

Try defining a char array and using strcpy to copy temp into it. Then do the above code on the array, it should work. (sorry my ipad here doesn't like to insert code into SO's interface)

link|improve this answer
2  
I know the feeling. I think SO developers should consider iPad users for the forseeable future. – The Elite Gentleman Nov 20 '10 at 3:37
feedback

As you can see, temp is a pointer, which points to a random address where the nameless array with the value Paras resides. And that array is a string constant.

For your program to work, you need to use an array instead of a pointer:

char temp[6] = "Paras";

Now if you're wondering why it's temp[6] instead of temp[5], the above code initializes a string, and completely different from:

char temp[5] = {'P', 'a', 'r', 'a', 's'};

Strings are terminated with a null terminator \0. And the string initialization will be like:

char temp[6] = {'P', 'a', 'r', 'a', 's', '\0'};
link|improve this answer
4  
Better still, char temp[] = , so the compiler figures out the length. – Matthew Flaschen Nov 20 '10 at 3:33
feedback
  temp[3]='F'; 

This line is not correct.The "temp" is const value,So you can't modify it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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