错误范例: #include<stdio.h> const int maxn=10000+10; int f[maxn]; int cnt; 错误原因: C中const不是指常量,而是表示只读;const声明常量是在C++中的用法 C中声明一个固定长度数组,可用: #define MAXN 256 int f[MAXN]; 来源:https://www.cnblogs.com/debug-the-heart/p/12631175.html 标签 const