/* Read a double value from fp. */ double read_double (FILE * fp) { double d; assert(fp != NULL); fscanf(fp, %lf, d); return d; }
The code above contains a common error. Which one of the following describes it?
Reveal answer
Fill a bubble to check yourself