语法错误(Error: array bound is not an integer constant before ‘]’ token)

语法错误

[Error] array bound is not an integer constant before ‘]’ token
数组绑定不是 ‘]’ 标记之前的整数常量
[Error] variably modified ‘array’ at file scope
[错误] 在文件范围内可变地修改了“数组”

解决方法

加上 const 限定符

一般而言,C/C++ 的编译器在编译时,一个数组的长度往往要求是静态已知的。因此,如果数组 arr[n] 长度是借助一个变量 n 来确定,那么可以加上 const 限定符:

int const n = 125;	// 加上 const ,注意末尾的分号;
int arr[n];

或者:

#define N 125
int arr[N];

你可能感兴趣的:(算法,c语言,开发语言)