if I load a double number
I want to add a number + some decimal
wat's wrong here ?
Code:
VALUE=123456789;
printf("%f \n",VALUE); // give's 123456789
VALUE=138414/1000000;
printf("%f \n",VALUE); // gives me 0.000000000
Code:
VALUE[0]=12345678; VALUE[1]=.138414; VALUE[2]=VALUE[0]+VALUE[1]; I don't get the expected 12345678.138414
Comment