Malloc C Function
Description
The C library function void *malloc(size_t size) allocates the requested memory and returns a pointer to it.
Declaration
Following is the declaration for malloc() function.
void *malloc(size_t size)
Parameters
size − This is the size of the memory block, in bytes.
↧