6
Comment imprimer un type int64_t en C
La norme C99 a des types entiers avec une taille d'octets comme int64_t. J'utilise le code suivant: #include <stdio.h> #include <stdint.h> int64_t my_int = 999999999999999999; printf("This is my_int: %I64d\n", my_int); et je reçois cet avertissement du compilateur: warning: format ‘%I64d’ expects type ‘int’, but argument 2 has type ‘int64_t’ J'ai …