Tagged Questions
0
votes
0answers
68 views
fread/fseek for a single data element vs performance?
Is a memory page loaded to main memory for each fread/fseek on a file?
I am trying to implement a byte wise hashing along with BTREE in between , (i.e) If the first byte is (For ex:) 200 .I would ...
0
votes
3answers
449 views
What's the intended use of _fread_nolock, _fseek_nolock?
we have a C++ class which basically reads and writes vectors from a binary file. An exemplary read function that loads a single vector into memory looks like this:
int load (const __int64 index, T* ...
-1
votes
2answers
7k views
C-programming ftell fseek fread, read size of a file
I have a file. I read the size of file. Then I loop reading two bytes at a time until I get to the end of the file. After every read operation I increment the current position by 2, however the ...