関数calloc2D_int マニュアル

(The documentation of function calloc2D_int)

Last Update: 2022/10/7


◆機能・用途(Purpose)

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


◆形式(Format)

#include <mymemory.h>
inline int ∗∗calloc2D_int (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)

int ∗∗array=calloc2D_int(5,10);