Q:

WHAT IS NULL POINTER IN C?

0

WHAT IS NULL POINTER IN C?

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Null pointer is a pointer which is pointing to nothing. Null pointer points to empty location in memory. Value of null pointer is 0. We can make a pointer to point to null as below.

int *p =  NULL;
char *p = NULL;

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now