Possible Duplicate:
What is the Fastest Method for High Performance Sequential File I/O in C++?
I have looked around a little bit and I am still not sure of the answer to this question.
When reading from a text file with an arbitrary word on every line, what would be the absolute fastest way of reading the words from that file? The scope of the project requires the fastest possible file read.
Using Visual Studio on Windows 7. No cross platform consideration.
Edit: Keep in mind, this file read is a one time thing, it will not be read from again and it will not be written to. The program starts, reads from the file, pushes it into a data structure and the loadFile() function is never called again.