如何打印“off_t”在C语言中?

发布于 2024-10-21 06:16:04 字数 439 浏览 1 评论 0原文

可能的重复:
我应该如何打印 off_t 和 size_t 等类型?

我正在使用 fstat(stream, &fs) 获取 C 语言中的文件大小,该文件大小返回类型 off_t

打印这个只会给出一个警告:

format ‘%d’ expects type ‘int’, but argument has type ‘off_t’

有什么想法如何在没有编译器错误的情况下打印这个吗?

Possible Duplicate:
How should I print types like off_t and size_t?

I'm using fstat(stream, &fs) to get a file size in C which returns type off_t.

Printing this just gives a warning:

format ‘%d’ expects type ‘int’, but argument has type ‘off_t’

Any ideas how to print this without compiler errors?

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

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

发布评论

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

评论(2

巷雨优美回忆 2024-10-28 06:16:04

偏移量类型通常是长整数。投射它,并相应地打印它。

off_t 下面的实际类型在 sys/types.h 中定义。你可以查一下!

Offset types are usually long integers. Cast it, and print it accordingly.

The actual type below off_t is defined in sys/types.h. You can look it up!

梦里人 2024-10-28 06:16:04

找到答案,使用:

%lld

无需任何铸造即可工作。

Found the answer, use:

%lld

Works without any casting.

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