I need help converting a hex to. I'm getting core dumps while compiling under Linux. Any help would be greatly appreciated!
This is the C code
unsigned int HexToInt(char *theString)
{
unsigned int value = 0;
char temp;
while(*theString != '\0')
{
value *= 16; /* peel off right digit */
if...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.