After finding the individual digits of a number by remainder procedure, the numbers are saved in an array. What I want now is to take the individual elements of this array and make a single integer value of it.
eg.
int a = 4400
digits saved in array by using recursion (4400/10) : let array be arr[]
arr[0]=0;
arr[1]=0;
arr[2]=4;
arr[3]=4;
final value:
int b= 4400 (by combining elements of array)
So I want to know if there is any way to combine the array elements to a single integer value ?