I want to convert a binary fraction into decimal.Consider binary number 1101.1110. I know the manual method of conversion and i can put in the form of program, but i am not able to separate the fractional part from the number. I need to separate it because the method of conversion differs after the point.
while converting decimal to binary the fractional part can be separated this way:
double num=12.23;
int fraction=num-(long)num;
can u help me.
Thanks in advance.