C99标准具有字节大小为int64_t的整数类型。我正在使用Windows的%I64d格式(或unsigned %I64u),如:
#include <stdio.h>
#include <stdint.h>
int64_t my_int = 999999999999999999;
printf("This is my_int: %I64d\n", my_int);
然后我得到这个编译器警告:
warning: format ‘%I64d’ expects type ‘int’, but argument 2 has type ‘int64_t’
我试过:
printf("This is my_int: %lld\n", my_int); // long long decimal
但我得到了同样的警告。我正在使用这个编译器:
~/dev/c$ cc -v
Using built-in specs.
Target: i686-apple-darwin10
Configured with: /var/tmp/gcc/gcc-5664~89/src/configure --disable-checking --enable-werror --prefix=/usr --mandir=/share/man --enable-languages=c,objc,c++,obj-c++ --program-transform-name=/^[cg][^.-]*$/s/$/-4.2/ --with-slibdir=/usr/lib --build=i686-apple-darwin10 --program-prefix=i686-apple-darwin10- --host=x86_64-apple-darwin10 --target=i686-apple-darwin10 --with-gxx-include-dir=/include/c++/4.2.1
Thread model: posix
gcc version 4.2.1 (Apple Inc. build 5664)
我应该使用哪种格式打印my_int变量没有警告?
C99的方式是
#include <inttypes.h>
int64_t my_int = 999999999999999999;
printf("%" PRId64 "\n", my_int);
或者你可以投!
printf("%ld", (long)my_int);
printf("%lld", (long long)my_int); /* C89 didn't define `long long` */
printf("%f", (double)my_int);
如果你坚持使用C89实现(特别是Visual Studio),你可以使用开源的<inttypes.h>(和<stdint.h>): http://code.google.com/p/msinttypes/
对于int64_t类型:
#include <inttypes.h>
int64_t t;
printf("%" PRId64 "\n", t);
对于uint64_t类型:
#include <inttypes.h>
uint64_t t;
printf("%" PRIu64 "\n", t);
你也可以用PRIx64来打印十六进制。
cppreference.com提供了所有类型的可用宏的完整列表,包括intptr_t (PRIxPTR)。scanf有单独的宏,比如SCNd64。
PRIu16的典型定义是“hu”,因此隐式的字符串常量连接发生在编译时。
为了使代码完全可移植,必须使用PRId32等来打印int32_t,使用“%d”或类似的代码来打印int。
来自嵌入式世界,即使uclibc也不是总是可用的,代码像
uint64_t浣熊=0xdeadfacedeadbeef;
printf(“%llx”, raccoon);
打印你的垃圾或根本不工作-我总是使用一个小帮手,这让我正确转储uint64_t十六进制:
#include <stdlib.h>
#include <stdio.h>
#include <stdint.h>
char* ullx(uint64_t val)
{
static char buf[34] = { [0 ... 33] = 0 };
char* out = &buf[33];
uint64_t hval = val;
unsigned int hbase = 16;
do {
*out = "0123456789abcdef"[hval % hbase];
--out;
hval /= hbase;
} while(hval);
*out-- = 'x', *out = '0';
return out;
}