BohYoh.comトップページへ  imaxdiv_t
C言語 標準ライブラリ アルファベット順索引 ヘッダ別索引 ホームページへ C言語講座のページ

C89  C99  C11  imaxdiv関数が返す値を表す型
imaxdiv_t
ヘッダ #include <inttypes.h>
概 要 imaxdiv関数が返す値を表す型。次のメンバを含む構造体であるが、その順序は任意である。
intmax_t quot  /* 商 */
intmax_t rem;  /* 剰余 */

■実装例■

typedef struct { intmax_t quot; /* 商 */ intmax_t rem; /* 剰余 */ } imaxdiv_t;



BohYoh.comトップページへ