6
Come stampare un tipo int64_t in C
Lo standard C99 ha tipi interi con dimensione byte come int64_t. Sto usando il seguente codice: #include <stdio.h> #include <stdint.h> int64_t my_int = 999999999999999999; printf("This is my_int: %I64d\n", my_int); e ricevo questo avviso del compilatore: warning: format ‘%I64d’ expects type ‘int’, but argument 2 has type ‘int64_t’ Ho provato con: …