I have a big file with real numbers, and I need to read them into doubles the fastest possible way.
I can chose the format of the file myself ( 1 number a line, or multiple for example)
tried scanf
, it seems slow, tried gets(s)
and then parsing doubles myself it gives about the same time.
Is there a faster way?