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

int main(void) {
	uint64_t a = 1;
	uint64_t b = 1;
    printf("With %%d:\n");
    printf("%d %d\n", a, b);
    printf("%d\n", a);
    printf("%d\n", b);
    printf("With %%PRIu64\n");
    printf("%" PRIu64 " %" PRIu64 "\n", a, b);
    printf("%" PRIu64 "\n", a);
    printf("%" PRIu64 "\n", b);
	return 0;
}
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
With %d:
1 0
1
1
With %PRIu64
1 1
1
1