在本地空间中声明VLA时,它们可以正常工作(除非使用-pedantic):
int main()
{
int i=9;
char n[i];
return 0;
}
但是,如果在全局级别执行相同操作,则会抛出错误
int i=9;
char n[i]; //error: array bound is not an integer constant before ‘]’ token
int main()
{
return 0;
}
stack
中存在局部空间,static
存储器中的内容需要大小
预先? 编译器为 g ++(GCC)8.2.0