Answer Posted / pratik bokade
✨Free() method is used to dynamically de-allocate the memory.
Syntax: Free(Ptr);
✨Realloc() or reallocation method is used dynamically changed the memory allocation of a previously allocated memory.
Syntax : Ptr=Realloc(Ptr, new size);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does I oop mean?
How to improve object oriented design skills?
What are the three parts of a simple empty class?
What is inheritance in simple words?
What is persistence in oop?
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
What is polymorphism in oop example?
Describe these concepts: Polymorphism, Inheritance and Abstraction.
What is encapsulation with example?
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
Who invented oop?
Can we create object of abstract class?
What is abstraction in oop?
Can we have inheritance without polymorphism?
Why do we use inheritance?