MathWorks Interview Question

What is malloc function in C?

Interview Answer

Anonymous

Oct 13, 2011

Dynamic memory allocation to allocate a chunk of data and return the address of the beginning of that chunk.

1