Code:
char asciihex[5];
short int datax=10;
sprintf(asciihex,"%4X",datax);
Is there any function to reverse this operation.I mean,
Code:
asciihex[5]=" A";
datax=function(asciihex);
result is :datax=10
Thanks in advice...
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
char asciihex[5];
short int datax=10;
sprintf(asciihex,"%4X",datax);
asciihex[5]=" A";
datax=function(asciihex);
result is :datax=10
Thanks in advice...