Datatypes used in C

前端 未结 4 1141
耶瑟儿~
耶瑟儿~ 2021-01-04 13:30

What is the difference between u_int32_t and uint32_t?

4条回答
  •  无人及你
    2021-01-04 14:04

    The variable type uint32_t is an unsigned 32-bit integer data type defined according to the so-called C99 standard. Not all compilers comply with the standard. And u_int32_t is used for some internally implementations.

提交回复
热议问题