I'm running into some coding troubles.
I am reading serial input into my program, and it saves the numbers into an array.
Now I want to convert this array into an integer to do calculations, where Array index 0 represents the one digits, index 1 the ten digits etc.
Array[0] represents 1 digit
Array[1] represents 10 digit
Array[2] represents 100 digit
Array[3] represents 1000 digit
Array[4] represents 10000 digit
Array[5] represents 100000 digit
The array is dynamic, so could have only 2 indexes.