Hi, I am having a user input a series of numbers and characters separated by spaces. like "10 23 65 34 765 34 65 34 64 354 64" and i need to put these into an array without the spaces. I stores them into a string but whenever i do like
mystring[0]
i only get the first digit and not the number. or if i put
mystring[1]
i only get the second number like in the digits above. i want
mystring[0]
to contain 10 and not just 1.
Please help!!!!!!