уже полез, так ---- uint_fast8_t typedef unsigned char uint_fast8_t; typedef unsigned short uint_fast16_t; typedef unsigned long uint_fast32_t; typedef unsigned long long uint_fast64_t;
The types each specify an unsigned integer type that supports the fastest operations among those whose representation has at least eight, 16, 32, or 64 bits, respectively. Note that the definitions shown here are merely representative.
|