what are the various memory handling mechanisms in C ?
Answer Posted / santhi
thre are 3 memory handling mechanisms.they are
malloc,calloc,ralloc.
malloc:which allocates memory to a variable dynamically.
calloc:which allocates blocks of memory.
ralloc: which can be used to reallocation of memory incase
of unsufficient memory which is allocated earlier.
using "delete" we can free the memory allocated to a
variable.
Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Compare array data type to pointer data type
What are # preprocessor operator in c?
When is a “switch” statement preferable over an “if” statement?
What does emoji p mean?
Why c is a mother language?
What type of function is main ()?
Are enumerations really portable?
i got 75% in all semester am i eligible for your company
Can we change the value of constant variable in c?
What Is The Difference Between Null And Void Pointer?
What are qualifiers and modifiers c?
Why should I use standard library functions instead of writing my own?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Is c still relevant?
What is the advantage of an array over individual variables?