错误:未知类型名称“intptr_t”

发布于 2024-12-29 13:40:52 字数 75 浏览 1 评论 0原文

我在 MinGW 中编译 C 程序时收到此错误。据我所知,我认为 'intptr_t' 是 C99 标准中的一种类型。我没有包含文件吗?

I am receiving this error while compiling a C program in MinGW. As far as I know, I thought 'intptr_t' was a type in the C99 standard. Am I not including a file?

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

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

发布评论

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

评论(1

帝王念 2025-01-05 13:40:52

您需要包含 stdint.h

请注意,intptr_tuintptr_t 确实是 C99 类型,但它们是可选的。

You need to include stdint.h.

Note that intptr_t and uintptr_t are indeed C99 types but they are optional.

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