0
Can two persons access a single file at a given time in c++
how and without any error
4 ответов
+ 5
If you open it for read it can work.
+ 1
i would assume that depends on the operating system, but most likely not. you can use multiple threads to access it if you are careful
+ 1
it is the same problem like in operating system subject ,concurrent conquerency problem called reader writer problem....
solution : synchronization
0
thank you max