<quickcur@yahoo .com> wrote in message news:1103742581 .120693.155210@ z14g2000cwz.goo glegroups.com.. .[color=blue]
> If I have a string in Hex, e.g., "0xff", how can I turn it into
> numbers?[/color]
long strtol( const char *s, char **endptr. int radix) in stdlib.h
If radix is zero and first char is "0" and second is "x" (or "X"), string is
interpreted as hexadecimal.
Comment