Author
anonymous
over 8 years ago
Language
Compiler
Options
Author
anonymous
over 8 years ago
$ prog.cc: In function 'int main()':
prog.cc:5:9: warning: unused variable 'x' [-Wunused-variable]
int x = table[10];
^
prog.cc:4:12: warning: array subscript is above array bounds [-Warray-bounds]
table[8] = 1234;
^
prog.cc:5:21: warning: array subscript is above array bounds [-Warray-bounds]
int x = table[10];
^
Exit Code:
0