int main() {
char *w;
strcpy(w, "Hello Word");
printf("%s\n", w);
return 0;
}
What is wrong with the way the char pointer is used in the above code?
|
|
Ok, you did not ask to the system for memory, to use it with the string. This code will work
That code declare w as an array of char, reserving the memory space for it. Other alternative is to use malloc or calloc for the char pointer. Read about that. |
|||
|
|
|
No memory allocated. Add
|
|||||
|
|
It's an uninitialized pointer. The strcpy will write to some unknown location in memory. |
|||
|
|
|
You allocate no space for the string. w is just a pointer to some memory (garbage value since it's not initialized).
or
You need to allocated the space for the characters. |
|||
|
|