関数calloc2D_char マニュアル
(The documentation of function
calloc2D_char
)
Last Update: 2022/10/7
◆機能・用途
(Purpose)
char型2次元配列の動的メモリを確保する。
Allocate dynamic memories for a 2-D array of
char
-type.
◆形式
(Format)
#include <mymemory.h>
inline char ∗∗calloc2D_char (const int N1,const int N2)
◆引数
(Arguments)
N1
配列の第1成分の要素数。
The number of array components of the 1st element.
N2
配列の第2成分の要素数。
The number of array components of the 2nd element.
◆戻り値
(Return value)
値が設定されていないN1×N2の2次元配列の先頭アドレス。
The start address of a 2-D array of N1×N2 whose values are not set.
◆使用例
(Example)
char ∗∗array=calloc2D_char(5,10);