printf 有两个 unsigned long int 的奇怪问题
我有这个代码(我正在使用ansi c中的大文件支持)
unsigned long int tmp,final
final=1231123123123213
tmp=final;
printf("%llu %llu \n",final,tmp);
printf("%llu \n ",tmp);
它打印
1231123123123213 0
1231123123123213
我不明白
i have this code (im working with big files support in ansi c)
unsigned long int tmp,final
final=1231123123123213
tmp=final;
printf("%llu %llu \n",final,tmp);
printf("%llu \n ",tmp);
it prints
1231123123123213 0
1231123123123213
i dont get it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
与
unsigned long int
一起使用的格式说明符是%lu
。您正在使用%llu
,它是unsigned long long int
的格式说明符。您的代码的行为未定义。您需要决定您要尝试做什么。使用正确的格式说明符(以匹配类型),或使用正确的类型(以匹配格式说明符)。
Format specifier used with
unsigned long int
is%lu
. You are using%llu
, which is format specifier forunsigned long long int
. The behavior of your code is undefined.You need to decide what it is you are trying to do. Either use the correct format specifier (to match the type), or use the right type (to match the format specifier).
因为你使用了错误的类型。
编译器应该抱怨数字常量(文字 1231123123123213)不适合 long int。它被截断。另外,%llu 用于打印长整型,而不是长整型;)。
Because you're using the wrong type.
The compiler should complain about the numeric constant (the literal 1231123123123213) not fitting a long int. It gets truncated. Plus, %llu is for printing long long ints, not long ints ;).
您需要
%lu
而不是%llu
。You need
%lu
not%llu
.