Mmh, wer bist du PRIu64?
Ich bin neu in C und bin konfrontiert mit:
#include <stdio.h>
#include <inttypes.h>
int main(void)
{
uint64_t foo = 10;
printf("foo is equal to %" PRIu64 "!\n", foo);
return 0;
}
Und es funktioniert! Ich verstehe nicht warum? Kann mir jemand dabei helfen? Danke vielmals! Torr