English 中文(简体)
标签:的问答
C90 复合文字
原文:C90 compound literals

在 C99 中, 如果 x 先前被宣布为 v2 类型, 那么我可以写: x = (v2) {1, 2}; where v2 is: typedef struct { int x; int y; y;} v2; 在 C90 中我能做类似的事情吗?

热门标签