I\'m trying to use 64 bit integers in C, but am getting mixed signals as to whether it should be possible.
When I execute the printf:
printf(\"Size o
Use int64_t, that portable C99 code.
int64_t
int64_t var = 0x0000444400004444LL;
For printing:
#define __STDC_FORMAT_MACROS #include printf("blabla %" PRIi64 " blabla\n", var);