printf
の形式指定子として使用する場合、%d
と%i
の違いは何ですか?
出力に使用する場合は同じです。 printf
で。
ただし、これらは入力指定子として使用する場合は異なります。 scanf
では、%d
は整数を符号付き10進数としてスキャンしますが、%i
はデフォルトで10進数になりますが、16進数(0x
が前にある場合)および8進数(前にある場合) 0
)。
したがって、033
は%i
では27ですが、%d
では33です。
これらはprintf
では同じですが、scanf
では異なります。 printf
の場合、%d
と%i
の両方が符号付き10進整数を指定します。 scanf
の場合、%d
および%i
も符号付き整数を意味しますが、%i
は、0x
が先行する場合は16進数として解釈し、0
が先行する場合は8進数で解釈します。
printf
の%i
と%d
のフォーマット指定子に違いはありません。これは、 ドラフトC99標準 セクション7.19.6.1
に移動することで確認できます。fprintf関数は、書式指定子とその関連でprintf
も対象段落8で述べています:
変換指定子とその意味は次のとおりです。
次の箇条書きが含まれています。
d,i The int argument is converted to signed decimal in the style [−]dddd. The precision specifies the minimum number of digits to appear; if the value being converted can be represented in fewer digits, it is expanded with leading zeros. The default precision is 1. The result of converting a zero value with a precision of zero is no characters.
一方、scanf
には違いがあり、%d
は10を基数とし、%i
はベースを自動検出します。これは、セクション7.19.6.2
に移動することで確認できます。fscanf関数は、書式指定子に関してscanf
を段落12それは言う:
変換指定子とその意味は次のとおりです。
以下が含まれます。
d Matches an optionally signed decimal integer, whose format is the same as expected for the subject sequence of the strtol function with the value 10 for the base argument. The corresponding argument shall be a pointer to signed integer. i Matches an optionally signed integer, whose format is the same as expected for the subject sequence of the strtol function with the value 0 for the base argument. The corresponding argument shall be a pointer to signed integer.
printf
には何もありません-2つは同義語です。