Question d’entretien chez Niyuj

What is the return type of malloc () function?

Réponses aux questions d'entretien

Utilisateur anonyme

16 août 2019

Void pointer

Utilisateur anonyme

21 déc. 2020

malloc means "memory allocation" malloc function is used to dynamically create a memory block, it allocates a memory block of size specified in bytes (as a parameter). It returns a pointer to the beginning of that block.