SyntaxFix
Write A Post
Hire A Developer
Questions
Use int64_t, that portable C99 code.
int64_t
int64_t var = 0x0000444400004444LL;
For printing:
#define __STDC_FORMAT_MACROS #include <inttypes.h> printf("blabla %" PRIi64 " blabla\n", var);