Differentiate between realloc() and free().
No Answer is Posted For this Question
Be the First to Post Answer
Which one is a preferred language C or C++? Why?
What is the use of class in c++?
Write a program to show polymorphism in C++?
Explain class invariant.
How do you sort a sort function in c++ to sort in descending order?
What is the basic of c++?
How do pointers work?
What number of digits that can be accuratly stored in a float (based on the IEEE Standard 754)? a) 6 b) 38 c) An unlimited number
What are the defining traits of an object-oriented language?
When can you tell that a memory leak will occur?
What are virtual functions in c++?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?