本文主要是介绍c/c++: warning: ISO C90 forbids variable length array ‘a’,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 介绍
- C99
- 安全问题
- 类似的alloca
- 安全问题的防护
介绍
https://en.cppreference.com/w/c/language/array
@item -Wvla
@opindex Wvla
@opindex Wno-vla
Warn if a variable-length array is used in the code.
@option{-Wno-vla} prevents the @option{-Wpedantic} warning of
the variable-length array.
[root@10 test]# more vla.c
#include <stdio.h>
int
这篇关于c/c++: warning: ISO C90 forbids variable length array ‘a’的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!