Please I need a help only in ansi c.
I have an array of hexa values, for example:
int N=3;
char myHexas[N];
myHexas[0]=0x12;
myHexas[1]=0x34;
myHexas[2]=0xAB;
I need to have a new array with the following:
myStrings[N*2];
myStrings[0]='1';
myStrings[1]='2';
myStrings[2]='3';
myStrings[3]='4';
myStrings[4]='A';
myStrings[5]='B';
Any ideas should be great.
Thanks in advance, Juan.