I'm a little lost with C++ so I could really use your help with this one! I googled it but nothing does what I want to do!
So here is my problem...
Let's say I have a file like this:
A 10 20 30 40
B 25 13 100 99
C 2 5 4 20
and I take one line at a time...
I want to create an array with A, B, C in it. I did it! But now I want to create an int array that will look like this:
10 20 30 40
25 13 100 99
2 5 4 20
How do I do it?
please help me!