Well that and the way Jerson pointed out, would for sure be the proper way to go,
but it should still work the way he had it originally as long as characters between string[0]
and string[9] were in order.
If you had values assigned to individual elements like say;
string[0]= "A"
string[1]= "Z"
string[2]= "P"
string[3]= "O"
string[4]= "M"
string[5]= "H"
string[6]= "X"
string[7]= "G"
string[8]= "W"
string[9]= "J"
Then doing it his original way, it wouldn't return the correct values in each element.
It would still print A,B,C,D,E,F,G,H,I,J.
Like Dave, I'm kinda curious where that "K" came from?
Bookmarks