I wanted to divide the integer and store it in an array
For Ex:1000000000000 into two indexes
arr[0]=1000000 arr[1]=000000
but arr[1] stores it as 0 instead of 0000000.
I wanted to perform some operations with it,so i needed 7 zeros in it ,instead of 1 zero.
Is it achievable in some way ?