C99 standard has integer types with bytes size like int64_t. I am using Windows’s %I64d format currently (or unsigned %I64u), like: #include <stdio.h> #include <stdint.h> int64_t my_int = 999999999999999999;...
  • May 11, 2022
  • 0 Comments