Hi, Can you please point me to codes in GCC where numbers in human readable format to floating point and floating point to human readable format conversion are taking place? For example: 3.2444422 -->404FA4F1-->3.2444422 int main () { float a; a= 3.2444422; return 0; } when you generate asm code, the assembler code is converted to 404FA4F1. So I am looking for a code in the gcc compiler. Thanks, -Amit