I am reading text file contains values like below
125602365 119653955 126374444 124463807 127312438 128395899
and the below code to read it.
if(!(pvtcheck(0)))
  {
     fscanf(fp,"%f",&deltime);
     printf("\ndeltime0=%f\n",deltime);    ///Actual value is 125602365, but i am getting 125602368.
  }
  if(!(pvtcheck(1)))
  {
      fscanf(fp,"\t%f",&deltime); 
      printf("\ndeltime1=%f\n",deltime);///Actual value is 119653955, but i am getting 119653952.
  }
  /// same for pvtcheck(2),pvtcheck(3),pvtcheck(4)
  if(!(pvtcheck(5)))
  {
      fscanf(fp,"\t%f",&deltime);
       printf("\ndeltime5=%f\n",deltime); ///Actual value is 128395899, but i am getting 128395896.
  }
In the Comment i have written output , any solution to not change the values
 
     
    