exit code is not zero...what does that mean?
exit code
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 ]...
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 ]...
ok...thanks