What is the explanation for the dangling pointer in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why structure is used in c?
What does c mean?
How can I trap or ignore keyboard interrupts like control-c?
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
Why cd or dvd are round why not square.
What is #define?
What is the value of c?
how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
Why is not a pointer null after calling free?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions