如何在 C 中使用 printf 打印 unsigned long int ?
我有我的号码就像这样...
int unsigned long number = 600851475143;
我试图用 printf() 打印它。每次我尝试时,编译器都会发出警告。
我尝试过 %uld
、%ld
并且谷歌搜索似乎没有找到答案。
我正在学习 C,但之前没有使用过 long int,所以我不确定我应该使用什么。
我正在追逐的说明符是什么?
Possible Duplicate:
How to printf “unsigned long” in C?
I have my number like so...
int unsigned long number = 600851475143;
I am trying to print it with printf()
. Every time I try, I get a warning by the compiler.
I've tried %uld
, %ld
and Googling hasn't seemed to find me the answer.
I'm learning C, but have not had to use a long int
before, so I'm not sure what I should be using.
What is the specifier I am chasing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我建议使用标准顺序(即无符号长整型)。
%lu
是您要查找的格式标记。I recommend using standard order (i.e. unsigned long int).
%lu
is the format tag you're looking for.打印
600851475143
prints
600851475143