Difference between null pointer and dangling pointer?
Answer Posted / sourisengupta
If free() is not able to free the memory then how we are
freeing the memory????
| Is This Answer Correct ? | 4 Yes | 6 No |
Post New Answer View All Answers
What are enumerated types?
how to find binary of number?
Is c is a high level language?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is the difference between array and structure in c?
how could explain about job profile
Is stack a keyword in c?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
Why pointers are used?
What is the difference between near, far and huge pointers?
What is null pointer constant?
What is the use of header?
Explain what is the use of a semicolon (;) at the end of every program statement?
How is a null pointer different from a dangling pointer?