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

C11语法汇总(仅记录遇到的坑)

时间:2017-05-31 20:11:09      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:typedef   结构体   struct   bsp   highlight   nbsp   赋值   支持   c11   

结构体赋值

typedef struct{
    int a,b,c;
}A;

A struct1 = {1,2,3};    //gnu++11支持,gnu11不支持
A struct2 = (A){1,2,3};    //gnu++11、gnu11支持

 

C11语法汇总(仅记录遇到的坑)

标签:typedef   结构体   struct   bsp   highlight   nbsp   赋值   支持   c11   

原文地址:http://www.cnblogs.com/pureLaw/p/6925705.html

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