Code: Select all
???char hex[MAX];
???result += (ret2 = atoi(?????)) * (ret = pow(16, i));
Code: Select all
???char hex[MAX];
???result += (ret2 = atoi(&hex[i])) * (ret = pow(16, i));
Code: Select all
???char hex[MAX];
???result += (ret2 = atoi(?????)) * (ret = pow(16, i));
Code: Select all
???char hex[MAX];
???result += (ret2 = atoi(&hex[i])) * (ret = pow(16, i));
Code: Select all
result += (ret2 = atoi(hex[i])) * (ret = pow(16, i));