I'm trying to move one big C++ string (with separators) like one below
& 12345 & 12345 & 23423 & 90323 &
into 3x5 array like one below with the first group of numbers excluded
char array[3][5];
{ '1' , '2' , '3' , '4' , '5'} ,
{ '2' , '3' , '4' , '2' , '3'},
{'9' , '0' , '3' , '2' , '3'};
I thought I've got it at first but after trying to display the output
it simply failed to display the value correctly. Pardon me if this has been asked before. I'm just looking for the most efficient way to this.
Cheers