I know that if we want to convert from base 16 to base 10 we do as follows (for example):
Given : $15C$ in base $16$
Conversion to base 10: $12 \times 16^0 + 5 \times 16^1 + 1 \times 16^2 = 348$ in base $10$
But I am unable to convert $15C.38$(base $16$) to base $10$.
Can someone show how ?
After the point, it goes like $16^{-1}$, $16^{-2}$ etc.
Therefore, $(15C.38)_{16}$ can be converted by doing the following:
$1 \times 16^2 + 5 \times 16^1 + 12 \times 16^0 + 3 \times 16^{-1} + 8 \times 16^{-2}$.
Another method is, writing every digit as 4-bit binary string and than converting those to decimal. i.e.
$(0001$ $0101$ $1100$ . $0011$ $1000)_{2} = (?)_{10}$