n | 関数callocの第1引数。
作成する配列の要素数を表す。 The 1st argument of function calloc, which represents the number of components of the array to create. |
size | 関数callocの第2引数。
作成する配列の1要素あたりのバイト数を表す。 The 2nd argument of function calloc, which represents the number of bytes for each component of the array to create. |
条件 Condition |
戻り値/動作 Return value or behaviour of the function |
n\(=0\) | プログラムをエラー終了する。 The program finishes as an error. |
size\(=0\) | プログラムをエラー終了する。 The program finishes as an error. |
動的メモリの確保に失敗した場合 Allocating the dynamic memory failed |
プログラムをエラー終了する。 The program finishes as an error. |
上記以外の場合 The other cases |
確保した動的メモリの先頭アドレス。 The first address of the allocated dynamic memory. |