Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I wrote a very simple test code of printf uint64_t:

#include <inttypes.h>
#include <stdio.h>

int main()
{
  uint64_t ui64 = 90;
  printf("test uint64_t : %" PRIu64 "\n", ui64);
  return 0;
}

I use ubuntu 11.10 (64 bit) and gcc version 4.6.1 to compile it, but failed:

main.cpp: In function ‘int main()’:
main.cpp:9:30: error: expected ‘)’ before ‘PRIu64’
main.cpp:9:47: warning: spurious trailing ‘%’ in format [-Wformat]

How can I fixed this issue?

Thanks in advance!

share|improve this question
It seems that you are compiling C code as C++, that is your error. If you rename your file to main.c and compile it with gcc, all should work fine. – Jens Gustedt Nov 15 '11 at 8:06
If I could up vote this more then once, I would. This is such a great question! – Petriborg Feb 17 '12 at 18:49

3 Answers

up vote 61 down vote accepted

The ISO C99 standard specifies that these macros must only be defined if explicitly requested.

#define __STDC_FORMAT_MACROS
#include <inttypes.h>

... now PRIu64 will work
share|improve this answer
Thank you very much! It works! – Dan Nov 15 '11 at 6:44
@Dan, don't forget to mark the answer as accepted (click the checkmark image on the left) if it solved your problem. – zneak Nov 15 '11 at 6:45
Thanks for your reminder. stackoverflow only allows me to accept the answer after a few minutes. By the way, for other reader about lld and PRIu64, please visit: google-styleguide.googlecode.com/svn/trunk/cppguide.xml item:64-bit Portability Thanks you all again! – Dan Nov 15 '11 at 7:00
2  
Hm, just including the header should suffice. The __STDC_FORMAT_MACROS macro is only required for inclusion in C++. – Jens Gustedt Nov 15 '11 at 8:05
4  
@Jens: Indeed; __STDC_FORMAT_MACROS appears only in a footnote in C99, suggesting that C++ only define these macros in the presence of the request. However the C++ committee chose to ignore the suggestion: e.g. in the n3242 draft, 27.9.2/3: Note: The macros defined by <cinttypes> are provided unconditionally. In particular, the symbol __STDC_FORMAT_MACROS, mentioned in footnote 182 of the C standard, plays no role in C++. So when the compilers catch up, we won't need __STDC_FORMAT_MACROS in either C or C++. – John Marshall Nov 15 '11 at 8:31
show 2 more comments

When compiling memcached under Centos 5.x i got the same problem.

The solution is to upgrade gcc and g++ to version 4.4 at least.

Make sure your CC/CXX is set (exported) to right binaries before compiling.

Hope it helps for your PRIu64 problem.

share|improve this answer

printf uint64_t use %lu

for

printf unint64_t use %ln (int * use %n - Print Format specifier)

Hope this Helps

share|improve this answer
1  
Works only if uint64_t is the same as long. – MSalters Apr 25 at 12:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.