I have an array storing a series of numbers as follows:
static final int CodeArray[] ={
11,
011,
0011,
1011,
00011,
10011,
01011,
000011,
100011,
010011,
...
}
However when I access the values(using a for loop), it returns the following:
11
9
9
1011
9
10011
521
9
100011
4105
Why is there a difference in the values being printed from the ones stored?