hi all.
the following is working fine for me
char * hex = (..dynamically allocated memory with malloc..);
*(hex+0) = 0x43;
*(hex+1) = 0x2b;
i now have to assign a string in the format 43 2b 1c to the char * array at runtime.
anyone did it ?
plz guide.