I got large HEX string in result into int i could be more than 10 ^ 30, and I converted in hex. I need sum (3 hex string) and remove last 12 numbers.
hex example "000000000000000000000000bd4c61f945644cf099d41ab8a0ab2ac5d2533835", "000000000000000000000000000000000000000000000000f32f5908b7f3c000", "00000000000000000000000000000000000000000000000000e969cd49be4000". And I need to sum them and get result into int. Thank you
I "made" a little two functions and they work but i think could be better, and they dont convert to normal integer number
    // convert hex to unsigned char decimal
    unsigned char div10(unsigned char *hex, unsigned size)
    {
        unsigned rem = 0;
        for(int i = 0; i < size; i++)
        {
            unsigned n = rem * 256 + hex[i];
            hex[i] = n / 10;
            rem = n % 10;
        }
        return rem;
    }
    
    
    unsigned char hex_to_dec_summer(char *local){
        unsigned char result[32]={0};
        unsigned char output[18]={};
    
        char input[64];
        strcpy(input, local);
    
        unsigned char hexnr[sizeof(input)/2]={}; 
        for (int i=0; i<sizeof(input)/2; i++) {
            sscanf(&input[i*2], "%02xd", &hexnr[i]);
        }
        
        
        unsigned char hexzero[32] = {0};
        unsigned i = 0;
        while(memcmp(hexnr, hexzero, sizeof(hexnr)) != 0 && i < sizeof(result))
        {
            result[sizeof(result) - i - 1] = div10(hexnr, sizeof(hexnr));
            i++;
        }
        printf("\n");
    
        for(unsigned j = 0; j < sizeof output; j++)
        {
            output[j]=result[j];
            printf("%d", output[j]);
        }
        output[18]='\0';
    }
I know how its make in python3 -> int(hex_number, 16)/(10**12) - like that but i need it in c
 
     
    