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 are directives in c?
Why is c so important?
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
Can we compile a program without main() function?
What’s a signal? Explain what do I use signals for?
How can you pass an array to a function by value?
How do you determine whether to use a stream function or a low-level function?
write a progrmm in c language take user interface generate table using for loop?
What are logical errors and how does it differ from syntax errors?
What is strcpy() function?
Why is c not oop?
Are comments included during the compilation stage and placed in the EXE file as well?
What is a macro in c preprocessor?
How do I get a null pointer in my programs?