Multiple choice Pick the odd one out. Malloc() Calloc() Realloc() Free() Reveal answer Fill a bubble to check yourself D Correct answer Explanation Malloc, calloc, and realloc are all functions used to request and allocate memory on the heap. Free is the odd one out because its function is to release or deallocate memory that was previously allocated.