1
0
UAHCode/CPE455/lab06/clang++.txt
2022-08-28 16:12:16 -05:00

11 lines
310 B
Plaintext

ec3.cpp:11:5: warning: array index 10 is past the end of the array (which contains 10 elements) [-Warray-bounds]
a[10] = 0;
^ ~~
ec3.cpp:8:5: note: array 'a' declared here
char a[10];
^
ec3.cpp:66:1: warning: control may reach end of non-void function [-Wreturn-type]
}
^
2 warnings generated.