| a | 割り算の分子。 The numerator. | 
| b | 割り算の分母。 The denominator. | 
| 条件 Condition | 戻り値/動作 Return value or behaviour of the function | ||||||
| \(b=0\) | プログラムをエラー終了する。 The program finishes as an error. | ||||||
| 上記以外の場合 The other cases | \(a/b\)の商と余り。
        戻り値の型であるdiv_t型は2つの整数メンバを持つC言語組み込みの構造体であり、
        その各メンバの値が以下のように設定される。 The quotient and remainder of \(a/b\). The return value type \(div_t\) is a build-in structure of the C language which has two integer members, and the values of the members are set as below. 
 |