6
Jak wydrukować typ int64_t w C
Standard C99 ma typy liczb całkowitych o rozmiarze bajtów jak int64_t. Korzystam z następującego kodu: #include <stdio.h> #include <stdint.h> int64_t my_int = 999999999999999999; printf("This is my_int: %I64d\n", my_int); i dostaję to ostrzeżenie kompilatora: warning: format ‘%I64d’ expects type ‘int’, but argument 2 has type ‘int64_t’ Próbowałem z: printf("This is my_int: …