c: printf("%-16llu", my_var);

发布于 2024-09-14 22:42:01 字数 146 浏览 1 评论 0 原文

自从我玩 c 以来已经有一段时间了,现在我发现了一些我以前从未见过的东西:

printf("%-16llu", my_var);

它似乎在说打印一个 long unsigned int 的 16 个字符。但是,第二个“l”代表什么?长长?

It's been awhile since I've played with c, and now I find something I've never seen before:

printf("%-16llu", my_var);

It would seem to be saying print 16 characters of a long unsigned int. But, what's the second 'l' for? long long?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

没有心的人 2024-09-21 22:42:01
%llu

用于unsigned long long。这是在 C99 中添加的(在 K&R 写完这本书之后很久很久)。

%llu

Is for unsigned long long. This was added in C99 (and much, much after K&R wrote the book).

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