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
What type of function is main ()?
What are the differences between new and malloc in C?
What is the difference between text and binary modes?
How can you be sure that a program follows the ANSI C standard?
Differentiate between the = symbol and == symbol?
Write a program that accept anumber in words
Write a program in c to replace any vowel in a string with z?
What is spaghetti programming?
What is c language and why we use it?
What is the purpose of 'register' keyword in c language?
Why enum is used in c?
Array is an lvalue or not?
What do you mean by command line argument?
Explain output of printf("Hello World"-'A'+'B'); ?
What does it mean when a pointer is used in an if statement?