Next: , Previous: , Up: C library functions   [Index]


calloc

calloc Function

#include <stdlib.h>

Integer new n;
Integer new size;
int *intbuf;

n = 10;
size = sizeof (int);

intbuf = calloc (n, size);