6
So drucken Sie einen int64_t-Typ in C.
Der C99-Standard hat ganzzahlige Typen mit einer Bytegröße wie int64_t. Ich verwende den folgenden Code: #include <stdio.h> #include <stdint.h> int64_t my_int = 999999999999999999; printf("This is my_int: %I64d\n", my_int); und ich bekomme diese Compiler-Warnung: warning: format ‘%I64d’ expects type ‘int’, but argument 2 has type ‘int64_t’ Ich habe versucht mit: printf("This …