below code.
If you delete this line "char symbolArray2 [5] [70] = {''};" the result of the program is not correct.
if the condition 1
//char symbolArray2 [5] [70] = {''};
as a result
ddddd
ddddd
+++++
ddddd
ddddd
ddddd
if the condition 1
char symbolArray2 [5] [70] = {''};
as a result
ddddd
ddddd
+++++
You gise of not seet
ddddd
ddddd
Why such a difference.
used by the compiler Dev-C++ 5,CodeBlock
you are overwriting the memory beyond the array because the array has only rows in the range [0,4] but you are trying to fill the row 5 that does not exist in the array.