标签:数组 属性 逗号 形式 include code span main style
#include <stdio.h> struct stu { int a; int b; }; int main() { struct stu stu1[2] = { { .a = 1, .b = 333, }, { .a = 3, .b = 21, } }; printf("%d\n", stu1[0].b); }
1.结构体数组中对属性的初始化可以用“.feature”的形式来初始化
2.一个结构体元素中属性间用逗号“,”
标签:数组 属性 逗号 形式 include code span main style
原文地址:https://www.cnblogs.com/zzdbullet/p/9702961.html