Explain Memory Allocation in C/C++ ?
Answer / Saroj Kumar Jha
Memory allocation in C and C++ is the process of reserving storage for variables in the computer's memory. This is usually done using dynamic memory allocation functions like malloc(), calloc(), realloc(), and free(). Static and automatic memory allocation also occur when variables are declared.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between passing by reference and passing a reference?
Can I create my own functions in c++?
Explain Text Manipulation Routines?
What is the arrow operator in c++?
What is the difference between c++ and turbo c++?
Write a program which employs Recursion
Briefly describe a B+ tree. What is bulk loading in it?
why all c++ program must have default constructor?
Explain class invariant.
Can we run c program in turbo c++?
What is a null object in c++?
Describe the setting up of my member functions to avoid overriding by the derived class?