Next: cbrt, Previous: atoll, Up: C library functions [Index]
calloc
#include <stdlib.h> Integer new n; Integer new size; int *intbuf; n = 10; size = sizeof (int); intbuf = calloc (n, size);