themactep.com

A home of miscellaneous projects by Paul Philippov.

Notes

Maximum values for fixed data types in C

  • uint8_t – 255 (byte)
  • uint16_t – 65,535 (unsigned short)
  • uint32_t – 4,294,967,295 (unsigned long)
  • uint64_t – 18,446,744,073,709,551,615 (unsigned long long)