#include <stdio.h>
int main() {
unsigned long long int num = 285212672; //FYI: fits in 29 bits
int normalInt = 5;
printf("My number is %d bytes wide and its value is %ul. A normal number is %d.\n", sizeof(num), num, normalInt);
return 0;
}
산출:
My number is 8 bytes wide and its value is 285212672l. A normal number is 0.
이 예기치 않은 결과는를 인쇄 한 것으로 가정합니다 unsigned long long int
. 당신이 어떻게 할 printf()
에게 unsigned long long int
?