Why does pointer dereference crash sometimes?
Every program has some allocated memory in the form of heap, stack, static data, registers, and more. When the program is trying to access a memory location that is not allocated or that it is not allowed to access because of OS protection then the error that occurs is called a Segmentation Fault. These are […]
Why does pointer dereference crash sometimes? Read More »