ฉันเขียนรหัสทดสอบที่ง่ายมากของ printf uint64_t:
#include <inttypes.h>
#include <stdio.h>
int main()
{
uint64_t ui64 = 90;
printf("test uint64_t : %" PRIu64 "\n", ui64);
return 0;
}
ฉันใช้ ubuntu 11.10 (64 บิต) และ gcc เวอร์ชัน 4.6.1 เพื่อคอมไพล์ แต่ล้มเหลว:
main.cpp: In function ‘int main()’:
main.cpp:9:30: error: expected ‘)’ before ‘PRIu64’
main.cpp:9:47: warning: spurious trailing ‘%’ in format [-Wformat]
main.c
และคอมไพล์ด้วย gcc ทุกอย่างจะทำงานได้ดี