6
Cómo imprimir un tipo int64_t en C
El estándar C99 tiene tipos enteros con un tamaño de bytes como int64_t. Estoy usando el siguiente código: #include <stdio.h> #include <stdint.h> int64_t my_int = 999999999999999999; printf("This is my_int: %I64d\n", my_int); y recibo esta advertencia de compilación: warning: format ‘%I64d’ expects type ‘int’, but argument 2 has type ‘int64_t’ Lo …