Search code examples
cnaming-conventionslanguage-design

What does uint32_t stand for?


I expect uint32 means "unsigned 32-bit integer".

What does the t stand for?


Solution

  • The suffix _tdenotes a type name. For example, size_t is the type for size.

    Another popular line of thought regards it as a convention for naming type definitions.