Hey,
I would like to break one char for example "t6" into to chars t and 6
look at what i did...
int a,b;
temp = *arraystr[2] % '10';
a = temp - '0';
temp = *arraystr[2] / '10';
b = temp - 'a';