标签:nbsp print strong stdio.h type include main printf def
#include <stdio.h>
int main() {
typedef int myint; // 为int 类型取自己想要的名字
myint a = 10;
printf("%d", a);
return 0;
}
其他类型的用法也是一样的
typedef 类型 自己想要取得名字;
标签:nbsp print strong stdio.h type include main printf def
原文地址:https://www.cnblogs.com/hello-dummy/p/9196812.html