Dereferencing a null pointer

suggest change

This is an example of dereferencing a NULL pointer, causing undefined behavior.

int * pointer = NULL;
int value = *pointer; /* Dereferencing happens here */

A NULL pointer is guaranteed by the C standard to compare unequal to any pointer to a valid object, and dereferencing it invokes undefined behavior.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents