MathWorks interview question

What is malloc function in C?

Interview Answer

Anonymous

13 Oct 2011

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

1