标签: c struct
#include <stdio.h> #include <string.h> struct{int x,y;}x; struct{int x,y;}y; int main(void) { return 0; }
这些结构的论文是否合法?两个声明是否都显示在代码或程序中?
答案 0 :(得分:2)
Wen声明了一个结构,它代表了一个新的范围。因此,每个结构都有自己的名称空间。所以,上面的代码片段并没有错。