What is the difference between null pointer and the void
pointer?
Answer Posted / sunitha
null pointer : used to compair a pointer to any object or
a function and returns a null value to the main function.
void pointer : void pointer ia pointer which does not have
any return type and it can be easily type casted with other
type of pointers.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How do you determine whether to use a stream function or a low-level function?
What is the difference between union and anonymous union?
How can I find the modification date and time of a file?
What is enumerated data type in c?
What is the purpose of void in c?
Explain what is the advantage of a random access file?
What is masking?
What does %d do in c?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Describe the modifier in c?
How can I trap or ignore keyboard interrupts like control-c?
Can you write a programmer for FACTORIAL using recursion?
What is a good way to implement complex numbers in c?
How the c program is executed?
What are variables c?