码迷,mamicode.com
首页 > 其他好文 > 详细

typedef 为类型取别名

时间:2018-06-19 00:12:09      阅读:150      评论:0      收藏:0      [点我收藏+]

标签: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 类型 自己想要取得名字;

 

typedef 为类型取别名

标签:nbsp   print   strong   stdio.h   type   include   main   printf   def   

原文地址:https://www.cnblogs.com/hello-dummy/p/9196812.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!