#include <stdio.h>
#include <conio.h>
#include <math.h>
float t, delt = 0.004000,n;
printf("enter the value for t=");
scanf("%f", &t);
n = t/ delt;
printf("n is %f",n);
getch();
output: enter the value for t=1 n is 249.999985
I am expecting 250. What am I doing wrong??