1
0
UAHCode/CPE455/lab06/clang++.txt

11 lines
310 B
Plaintext
Raw Normal View History

2022-08-28 21:12:16 +00:00
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.