5
votes
10
votes
Is there any ordinary reason to use open() instead of fopen()?
It is better to use open() if you are sticking to unix-like systems and you might like to:
Have more fine-grained control over unix permission bits on file creation.
Use the …
