hello .
I have a problem.
I have a variable DWORD num= 0x1234ABCD
i want to convert it to char *
for example-
char * result[0]= '[the ASCII of 0x1]'
result[1]= '[the ASCII of 0x2]
result[2]='[the ASCII of 0x3]
...
How can i do this??
thank you very much!