6
Cara mencetak tipe int64_t dalam C
Standar C99 memiliki tipe integer dengan ukuran byte seperti int64_t. Saya menggunakan kode berikut: #include <stdio.h> #include <stdint.h> int64_t my_int = 999999999999999999; printf("This is my_int: %I64d\n", my_int); dan saya mendapatkan peringatan kompiler ini: warning: format ‘%I64d’ expects type ‘int’, but argument 2 has type ‘int64_t’ Saya mencoba dengan: printf("This is …