简体   繁体   中英

Variable length arrays C99 not supported in C

In Visual Studio 2005, I'm trying to compile a .c file:

int i = 6;
int a[i];

It doesn't work, so which standard does my compiler follow?

Visual Studio only supports C89/90. They have no support for C99. Therefore you cannot use variable-length arrays in Visual Studio. Furthermore, Microsoft has no plans to add support for C99 in their C compiler.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM