Hello,
how can I find a buffer overflow in C/C++?

For example:

int x[10];
int y[5][5];
int z[5][5][2];

x[12] = 0;
y[3][7] = 8;
z[2][6][1] = 8;

Is there a way or a tool/compiler to solve this problem?

Thanks

Reply via email to