I have the code below
#include <stdio.h>
int main(){
float n;
scanf("%f",&n);
printf("%f",n);
return 0;
}
Then, I run the code
input: 45321.56 is not same with
output:45321.558594
I want to get output which same as the input.
How to solve this problem?
Thank you