I was wondering how is it possible to get the digital elements of an integer so that I could display an array such as [1][7]
coming from the number 17 for instance. I found this solution here for counting the digits and now I need to fit the digits composing the integer into an array and so wants to retrieve the value of each of them
int A = 17;
int table[lenght_of_A];
A 'operation_to_fit_A_in' table;