The following code seems to segfault and I cannot figure out why.
#include <string.h>
static char src[] = "aaa";
int main()
{
char* target[2] = {"cccc","bbbbbbbbbb"};
strcpy(target[1],src);
return 0;
}
|
Because It's no different to:
I think you may be confusing it with:
which is valid since it creates an array that you are allowed to modify. But what yours gives you:
is an array of pointers, all of which point to non-modifiable memory. If you were to try:
you would find that it works since |
|||||||
|
strcpy? What will it look like afterwards? – Anon. Feb 22 '11 at 2:51