Tuesday, August 14, 2012

alloc in C

Everyone who are familiar with C programming will be aware of below memory allocation functions.

malloc()
calloc()
realloc()
 and
free()

Does anyone knew about the alloc() function in C? If so, how does it differ from malloc() and calloc()? what are special qualities of alloc function?