Link to home
Start Free TrialLog in
Avatar of harsher
harsher

asked on

how to copy from uint to char[] ?

i have a problem here...........

in my program, i have

char OutputString[20];
uint8_t Message_Digest[20];

.....................

then i have
for(i = 0; i < 20 ; ++i)
     printf("%02X ", Message_Digest[i]);
which gives me what i wan. but how do i copy the output into the OutputString ? so that OutputString contains all the

printf("%02X ", Message_Digest[i]); from i=0 to 19...
ASKER CERTIFIED SOLUTION
Avatar of dimitry
dimitry

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of harsher
harsher

ASKER

thanx very much... ur da man!!!!!!!!!
You are welcome