This question is meant to be used as reference for all frequently asked questions of the nature:
Why do I get a mysterious crash or "segmentation fault" when I copy/scan data to the address where an uninitialised pointer points to?
For example:
char* ptr;
strcpy(ptr, "hello world"); // crash here!
or
char* ptr;
scanf("%s", ptr); // crash here!
This happens because you have not allocated memory for the pointer
char* ptr
. In this case you have to dynamically allocate memory for the pointer.Two functions
malloc()
andcalloc()
can be used fordynamic memory allocation
.Try this code :-
When the use of
*ptr
over don't forget to deallocate memory allocated for*ptr
.This can be done usingfree()
function.Size of dynamically allocated memory can be changed by using
realloc()
.In most cases "segmentation fault" happens due to error in memory allocation or array out of bound cases.
A pointer is a special type of variable, which can only contain an address of another variable. It cannot contain any data. You cannot "copy/store data into a pointer" - that doesn't make any sense. You can only set a pointer to point at data allocated elsewhere.
This means that in order for a pointer to be meaningful, it must always point at a valid memory location. For example it could point at memory allocated on the stack:
Or memory allocated dynamically on the heap:
It is always a bug to use a pointer before it has been initialized. It does not yet point at valid memory.
These examples could all lead to program crashes or other kinds of unexpected behavior, such as "segmentation faults":
Instead, you must ensure that the pointer points at (enough) allocated memory:
Note that you can also set a pointer to point at a well-defined "nowhere", by letting it point to
NULL
. This makes it a null pointer, which is a pointer that is guaranteed not to point at any valid memory. This is different from leaving the pointer completely uninitialized.Yet, should you attempt to access the memory pointed at by a null pointer, you can get similar problems as when using an uninitialized pointer: crashes or segmentation faults. In the best case, your system notices that you are trying to access the address null and then throws a "null pointer exception".
The solution for null pointer exception bugs is the same: you must set the pointer to point at valid memory before using it.
Further reading:
Pointers pointing at invalid data
How to access a local variable from a different function using pointers?
Can a local variable's memory be accessed outside its scope?
Segmentation fault and causes
What is a segmentation fault?
Why do I get a segmentation fault when writing to a string initialized with "char *s" but not "char s[]"?
What is the difference between char s[] and char *s?
Definitive List of Common Reasons for Segmentation Faults
What is a bus error?
Pointers only point to a memory location. You created a pointer but you did not bind to a memory location yet.
strcpy
wants you to pass two pointers (first one mustn't be constant) that point to two character arrays like this signature:sample usage:
You can try the following code snippet to read string until reaching newline character (*you can also add other whitespace characters like
"%[^\t\n]s"
(tab, newline) or"%[^ \t\n]s"
(space, tab, newline)).(In real life, don't forget to check the return value from
scanf()
!)