I want to convert the number from decimal to hexadecimal number. The problems is the number is too big that cannot store in int datatype.For example,
int a = pow(10,17);
However, if I try to use double, I will face the problem of modulo operator because it does not support floating point datatype.
What should I do to convert it and store it? (Project Euler Problem Number 162).