cppcheck/testbufferoverrun5/testbufferoverrun5.cpp

12 lines
84 B
C++

const int SIZE = 10;
void f()
{
int i[SIZE];
i[SIZE] = 0;
}