C99 printf Formatierer vs C ++ 11 benutzerdefinierte Literale
Dieser Code:
#define __STDC_FORMAT_MACROS
#include <inttypes.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
int main(int argc,char **argv)
{
uint64_t val=1234567890;
printf("%"PRId64"\n",val);
exit(0);
}
Funktioniert für C99, C ++ 03, C ++ 11 nach GCC 4.5, scheitert aber am C ++ 11 nach GCC 4.7.1. Leerzeichen vor @ einfügPRId64
lässt GCC 4.7.1 es kompilieren.
Welches ist korrekt