I am having a bit of a problem dealing with arrays
i have a file that contains a bunch of integers, such as the following one
"3
4: 2, 5, 3, 1
2: 3, 7
5: 5, 6, 4, 3, 3"
the 3 is the number of arrays i should make
and the numbers 4,2, and 5 are the sizes of each array
i want to make a code that reads the file and put the values in arrays
ie: array 1 must contain the elements 2 5 3 1
array 2 must contain the elements 3 7
array 3 must contain the elements 5 6 4 3 3
plz i need some help here and i appreciate it very much
thanks in advance

