printf 有两个 unsigned long int 的奇怪问题

发布于 2024-09-18 04:06:55 字数 276 浏览 5 评论 0原文

我有这个代码(我正在使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

不回头走下去 2024-09-25 04:06:55

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 for unsigned 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).

手长情犹 2024-09-25 04:06:55

因为你使用了错误的类型。

unsigned long long int tmp, final;

编译器应该抱怨数字常量(文字 1231123123123213)不适合 long int。它被截断。另外,%llu 用于打印长整型,而不是长整型;)。

Because you're using the wrong type.

unsigned long long int tmp, final;

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 ;).

挽容 2024-09-25 04:06:55

您需要 %lu 而不是 %llu

You need %lu not %llu.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文