-

差分

移動先: 案内検索

Functions HI-TECH C CALLOC

492 バイト追加, 2017年12月22日 (金) 18:49
ページの作成:「<strong>CALLOC</strong> ==概要== #include <stdlib.h> char * calloc(size_t cnt, size_t size) ==詳細== <strong>Calloc</strong>()は、それぞれのsizeの長...」
<strong>CALLOC</strong>
==概要==

#include <stdlib.h>

char * calloc(size_t cnt, size_t size)


==詳細==
<strong>Calloc</strong>()は、それぞれのsizeの長さのcntオブジェクトを持つ??ダイナミックメモリの連続するブロックを取得しようと試みます。ブロックはゼロで埋められます。ブロックに対するポインタ、もしくはメモリが配置されなければ0が返されます。

==参照==

brk, sbrk, malloc, free

案内メニュー