Q:

WHAT IS NULL POINTER IN C?

belongs to collection: C INTERVIEW QUESTIONS AND ANSWERS

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)

C INTERVIEW QUESTIONS AND ANSWERS

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
WHAT IS NULL IN C?... >>
<< WHAT IS POINTER IN C?...