糊涂蜡烛

文章
5
资源
0
加入时间
2年10月17天

c语言给数据类型起别名

在我们日常使用数据类型时,有时对于一些特定意义的数据类型,有时起别名会让我们对变量有更有利于我们开发首先我们先看一下define 和typedef给数据类型起别名的区别 #define uint unsigned int //注意没有;typedef unsinged int auint;uint a,b;//实际表示unsigned int a;i...