Size of int in C on different architectures

前端 未结 7 1807
甜味超标
甜味超标 2020-12-09 20:31

I am aware that the specification of the C language does not dictate the exact size of each integer type (e.g., int).

What I am wondering is: Is there a

7条回答
  •  抹茶落季
    2020-12-09 20:43

    You might want to take a look at pstdint.h. It is a portable implementation of stdint.h, and does not require C99 compiler support.

提交回复
热议问题