Language
C++
Compiler
gcc 4.8.5
Options
Warnings
Boost 1.64.0
C++1y(GNU)
-pedantic
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.64.0/gcc-4.8.5/include -std=gnu++1y -pedantic
Exit Code:
1
Author
anonymous
over 6 years ago
C++
gcc 4.8.5
Author
anonymous
over 6 years ago
$ g++ prog.cc -Wall -Wextra -I/opt/wandbox/boost-1.64.0/gcc-4.8.5/include -std=gnu++1y -pedantic
prog.cc: In function 'int main()':
prog.cc:8:23: warning: ISO C++ forbids variable length array 'opt' [-Wvla]
int opt[rows][cols] = {0};
^
prog.cc:8:23: warning: ISO C++ forbids variable length array 'opt' [-Wvla]
prog.cc:8:29: error: variable-sized object 'opt' may not be initialized
int opt[rows][cols] = {0};
^