...
Calling malloc( n )
allocates memory for an object whose size is n
and returns either a null pointer or a pointer to the allocated memory. A program can implicitly convert the pointer that {{malloc()
}} returns into a different pointer type.
...