There is no standard method for a data type exceeding 64 bits. You should check the documentation of your systems, some of them define 128 bits of integers. However, in order to really have flexible integers, you must use a different representation using an array, for example. Then you need to define operators =, <, >etc.
Fortunately, libraries such as GMP allow the use of arbitrary integers.
source
share