Answer Posted / glibwaresoftsolutions
A dangling pointer points to memory that has been deallocated. Accessing it causes undefined behavior.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How can I sort a linked list?
Tell me what is the purpose of 'register' keyword in c language?
What is #line used for?
What is meant by gets in c?
Is int a keyword in c?
If fflush wont work, what can I use to flush input?
What is a good data structure to use for storing lines of text?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
Tell me is null always defined as 0(zero)?
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
What is the full form of getch?
What are the modifiers available in c programming language?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Why ca not I do something like this?
Is c is a middle level language?