I'm reading from a text file which contains:
Mary 55334422 24.90 56.6 45.68
and am reading it in:
....char name[20]; int num; double worked; double rate; double total;....
fscanf(fp, "%s %d %f %f %f\n", name, &num, &worked, &rate, &total);
I'm getting the name and the integer fine, but the floating point numbers come out something like -9522999990000000000000000000.00
Am I doing something wrong here?