Tagged Questions
4
votes
6answers
2k views
Fastest way to convert binary to decimal?
I've got four unsigned 32-bit integers representing an unsigned 128-bit integer, in little endian order:
typedef struct {
unsigned int part[4];
} bigint_t;
I'd like to convert this number into ...