- 创建 test.c,代码如下:
#include <stdio.h>
int main()
{
int unsigned long number = 600851475143;
printf("%lu", number);
return 0;
}
- 编译
$ gcc test.c
- 运行
$ ./a.out
600851475143
#include <stdio.h>
int main()
{
int unsigned long number = 600851475143;
printf("%lu", number);
return 0;
}
$ gcc test.c
$ ./a.out
600851475143
本文标题:C 如何打印 unsigned long int 类型
本文链接:https://www.haomeiwen.com/subject/mvtjrrtx.html
网友评论