+ 2
Array
How can we seprate n digits number from each other ? ( In C )
2 Respostas
+ 1
print it separately, or store em in an array, just do:
while(num){
arr[i] = num%10;
num/=10;
++i;
} where arr and i have been defined
+ 1
Hii
How can we seprate n digits number from each other ? ( In C )