Do each of those little boxes represent integers or chars ?
Are the numbers always the same length ?
How do you know where the decimal point goes ?
Each box represents a char, the numbers are all in the format 000.00, they will never get larger, so the number could be 000.01 or it could be 018.00, and I would write it out like 0|0|0|0|1 or 0|1|8|0|0. It is my way of showing you the array, so for the array for 123.34 would be manually created like this:
int array[] = {
1, 2, 3, 4, };
I apologize if this isn't making sense, I have trouble explaining my thoughts