I have an array like this:
int numeros[qNum][6];
In fact it stores an integer by line separating the digits, eg:
I have the number 1234, in the array will be:
numeros[0][0] = 1;
numeros[0][1] = 2;
And so on. But I have numbers composed of 4, 5 and 6 digits, how do I define the matrix with dynamic columns, because that way line 0 is not 1234 but 123400. That is, it is always having 6 columns, filling in the number that I want and completing the rest of the columns with 0. How do I not do that, example having an array with lines:
1234 14086 815108 No zeros to get in the way?