Declaring an array of negative length

泄露秘密 提交于 2019-11-27 16:00:47

It's undefined behaviour, because it breaks a "shall" constraint:

C99 §6.7.5.2:

If the size is an expression that is not an integer constant expression... ...each time it is evaluated it shall have a value greater than zero.

Undefined behavior, I believe, though don't quote me on that.

This gives the error error: size of array 'testArray' is negative in gcc:

int testArray[-35];

though, as you've seen:

int n = -35;
int testArray[n];

does not give an error even with both -Wall and -W.

However, if you use -pedantic flag, gcc will warn that ISO C90 forbids variable length array.

Visual studio erro message for compilation, you can use -1 to say an empty array. It expects int and you are passing int, so no compiler error.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!