Let's take it step by step.
char str[] = "Good";
You are creating an array of characters, 5 characters long with the following content:
{ 'G', 'o', 'o', 'd', '\0' }
changeStr(str);
Here, you are passing that array to a function. Since arrays decay into pointers, this call is perfectly OK.
void changeStr(char *str)
{
str = "D";
}
Now, here comes the first issue. You are probably confusing "D" and 'D'. If you want to change the first character in the array you need to do it the following way:
str[0] = 'D';
This would work fine. Changing the pointer won't do anything, because it's a local variable that holds a pointer to the beginning of the array, not the array itself. If you want to replace the entire content of the array with just { 'D', '\0' }, you would need to use strcpy.
strcpy(str,"D");
Now, let's check the last part. Here you mix things up a bit.
char *p = str;
changeStr(&p);
You are creating a new variable that points to the beginning of the array and you pass pointer to that variable into the next function.
void changeStr(char **str)
{
*str = "S";
}
Which does indeed change the original variable passed, but remember, this is p not the array. What you did is change where p points. It now points to a constant "S".
p, but doesn't changestrin the main program. And it cannot, becausechar str[]is an array of characters, not a pointer. – Bo Persson Nov 12 '12 at 8:49