関数calloc3D_char マニュアル

(The documentation of function calloc3D_char)

Last Update: 2022/10/7


◆機能・用途(Purpose)

char型3次元配列の動的メモリを確保する。
Allocate dynamic memories for a 3-D array of char-type.


◆形式(Format)

#include <mymemory.h>
inline char ∗∗∗calloc3D_char (const int N1,const int N2,const int N3)


◆引数(Arguments)

N1 配列の第1成分の要素数。
The number of array components of the 1st element.
N2 配列の第2成分の要素数。
The number of array components of the 2nd element.
N3 配列の第3成分の要素数。
The number of array components of the 3rd element.


◆戻り値(Return value)

値が設定されていないN1×N2×N3の3次元配列の先頭アドレス。
The start address of a 3-D array of N1×N2×N3 whose values are not set.


◆使用例(Example)

char ∗∗∗array=calloc3D_char(5,10,15);