codeblocks各种编译错误积累

1. 警告: anonymous type with no linkage used to declare variable ‘<anonymous struct> a [1001]’ with linkage [默认启用]|

我的代码:

struct{
    int class_num, assess;
}a[size];

似乎它不允许没有命名的结构体, 于是在struct后加了个结构体名node, 这样编译通过。

你可能感兴趣的:(codeblocks)