Declare a void pointer.
By admin on Jan 8, 2007 in C Interview Questions, Technical
void *malloc(size_t number_of_bytes);
malloc is just the library function called to allocated some memory and of course a void pointer will be returned , but it is the declaration of a void pointer.


