Difference between different integer types

后端 未结 4 2137
隐瞒了意图╮
隐瞒了意图╮ 2020-12-08 15:37

I was wondering what is the difference between uint32_t and uint32, and when I looked in the header files it had this:

types.h:

           


        
4条回答
  •  隐瞒了意图╮
    2020-12-08 16:05

    There is no difference.

    unsigned int = uint32 = uint32_t = unsigned in your case and unsigned int = unsigned always

提交回复
热议问题