其他分享
首页 > 其他分享> > 类型定义

类型定义

作者:互联网

#include <inttypes.h>

 

typedef int8_t int8;  //<有符号 1字节

typedef uint8_t uint8; //无符号 1字节

typedef uint8_t byte; //< 无符号 1字节

typedef int16_t int16;//有符号 2字节

typedef uint16_t uint16 ;//无符号 2字节

typedef int32_t int32;

typedef uint32_t uint32;

typedef int64_t int64;

typedef uint64_t uint64;

标签:uint64,int32,typedef,字节,符号,uint8,类型定义
来源: https://www.cnblogs.com/1521299249study/p/14436552.html