calloc
書式
void *calloc(size_t n, size_t size);
機能
大きさがsizeのオブジェクトn個分の配列領域を確保。確保した全ビットを0で初期化。
戻り値
成功時は確保領域へのポインタ、失敗時は空ポインタ。
ヘッダーファイル
stdlib.h
使用例
int *p;
int n = 10;
p = (int *)calloc(n,sizeof(int));
int n = 10;
p = (int *)calloc(n,sizeof(int));