Open In App

C | Dynamic Memory Allocation | Question 5

Like Article
Like
Save
Share
Report

What is the return type of malloc() or calloc()
(A) void *
(B) Pointer of allocated memory type
(C) void **
(D) int *


Answer: (A)

Explanation: malloc() and calloc() return void *.

We may get warning in C if we don’t type cast the return type to appropriate pointer.

Quiz of this Question


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads