Hi All,
I am trying to convert an inputted user string into an array of ints, that will be used as hexadecimals. The user will only enter hex in the string.
Does anyone know why the below code produces the following output. The first entry is incorrect, all the rest are correct.
I entered 0123456789abcdef
22ff601 2 3 4 5 6 7 8 9 a b c d e f
char string[16];
gets(string);
for(x=1;x<16;x++)
{
if(string[x]<58)
{//printf("%x\t", string[x]);
string[x]-=48;
printf("%x\t", string[x]);
}
else if(string[x]<91)
{//printf("%x\t", string[x]);
string[x]-=55;
printf("%x\t", string[x]);
}
else
{
string[x]-=87;
printf("%x\t", string[x]);
}
}