답변:
출력에 사용될 때와 동일합니다 (예 : with) printf
.
입력으로 지정 등으로 사용될 때, 이들 다른 scanf
, %d
서명 진수로 정수를 검사하지만, %i
소수이지만 디폴트는 (앞에 있으면 진수 있도록 0x
선행 경우) 8 진수 (0
).
따라서 033
27은 %i
이지만 33은 %d
입니다.
의 %i
및 %d
형식 지정자 에는 차이가 없습니다 printf
. 우리는로 이동하여 볼 수 있습니다 초안 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 함수 섹션 12로 이동 하여이를 확인할 수 있습니다.scanf
변환 지정자와 그 의미는 다음과 같습니다.
다음을 포함합니다 :
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.