Daily Archives: October 18, 2011

Malloc and Casting

In C, the malloc function is used to allocate memory. Its prototype is: void *malloc(size_t size);void *malloc(size_t size); It returns a void pointer (void *), which indicates that it is a pointer to a region of unknown data type therefore … Continue reading

Posted in Computer Science | Tagged , | 2 Comments