What is the difference between null pointer and void pointer
Answer Posted / nagarala sai deepak reddy
NULL POINTER :
the pointer which dosent point to any memory location is
called NULL POINTER.
VOID POINTER :
the pointer is a one which can only point to a particular
memory location of it's own type.... but when the pointer
is given void it can be mde to point any location of
different type
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Define circular linked list.
What is union in c?
Explain pointer. What are function pointers in C?
Does c have class?
What does 3 periods mean in texting?
What are the types of variables in c?
What is a structure member in c?
What are preprocessor directives in c?
What is the difference between formatted&unformatted i/o functions?
Difference between Function to pointer and pointer to function
What is c language in simple words?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
Why calloc is better than malloc?
Explain the difference between malloc() and calloc() function?
What is difference between far and near pointers?