← Back to topics
Topic

exit code

M
MilosRadic
exit code is not zero...what does that mean?
b
boris4
that mean your program exists before it comes to end...

in most of cases, problem is caused by accessing a place in array that doesn't exists...

for example..
if you have array of integers A[ 0..100 ], and you are trying to get A[ 102 ] or A[ -20 ]...