gpt4 book ai didi

c - 如何使用 printf 格式化 unsigned long long int?

转载 作者:行者123 更新时间:2023-11-30 16:28:33 25 4
gpt4 key购买 nike

#include <stdio.h>
int main() {
unsigned long long int num = 285212672; //FYI: fits in 29 bits
int normalInt = 5;
printf("My number is %d bytes wide and its value is %ul. A normal number is %d.\n", sizeof(num), num, normalInt);
return 0;
}

输出:

My number is 8 bytes wide and its value is 285212672l. A normal number is 0.

我认为这个意外结果是由于打印unsigned long long int而产生的。如何printf()输出unsigned long long int

最佳答案

使用 ll (el-el) long-long 修饰符和 u(无符号)转换。 (适用于 Windows、GNU)。

printf("%llu", 285212672);

关于c - 如何使用 printf 格式化 unsigned long long int?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52324179/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com