#include int main() { double a, b, c, d, e; FILE * fred; fred = fopen("data1", "r"); fscanf(fred, "%lf %lf %lf %lf %lf", &a, &b, &c, &d, &e); printf("The last two numbers were %lf and %lf \n", d, e); fclose(fred); return(0); }