51 extern int add(
const int a,
const int b,
int *result);
77 extern int subtract(
const int a,
const int b,
int *result);
103 extern int multiply(
const int a,
const int b,
int *result);
128 extern int divide(
const int a,
const int b,
int *result);
int subtract(const int a, const int b, int *result)
2 つの整数を減算します。
int divide(const int a, const int b, int *result)
2 つの整数を除算します。
int multiply(const int a, const int b, int *result)
2 つの整数を乗算します。
int add(const int a, const int b, int *result)
2 つの整数を加算します。