#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.
", sizeof(num), num, normalInt);
return 0;
}
Output:
(输出:)
My number is 8 bytes wide and its value is 285212672l. A normal number is 0.
I assume this unexpected result is from printing the unsigned long long int
.
(我认为这种意外的结果是由于打印unsigned long long int
。)
How do you printf()
an unsigned long long int
? (你如何printf()
一个unsigned long long int
?)
ask by andrewrk translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…