i have input which is : 602.8235291 but i noticed that when i do :
float x1 = 602.8235291;
printf("%f", x1);
The output is : 602.823547 as you see it is different in the precision . how can i maintain the same value in x1 ?
i have input which is : 602.8235291 but i noticed that when i do :
float x1 = 602.8235291;
printf("%f", x1);
The output is : 602.823547 as you see it is different in the precision . how can i maintain the same value in x1 ?