LoginSignup
0
0

More than 5 years have passed since last update.

secureCoding > 書式文字列中の長さ修飾子(the length modifier) j > ...がintmax_t型(uintmax_t型)を持つ引数に適用されることを表す

Last updated at Posted at 2015-05-06

引用: C/C++ セキュアコーディング 第2版 by Robert C. Seacordら

書式文字列中の長さ修飾子 jは、続く変換指定子 (d, i, o, u, x, X, n)がintmax_t型もしくはuintmax_t型を持つ引数に適用されることを表す。

mytypedef_t x;
printf("%ju", (uintmax_t) x);

「長さ修飾子」は「The length modifier」として以下に説明がある。
http://linux.die.net/man/3/printf

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0