Use the following table as a desk reference for the various fopen modes and how they impact read, write and seek.
Mode | Read | Write | Seek |
---|---|---|---|
r | ✔️ | ❌ | ✔️ |
r+ | ✔️ | ✔️ | ✔️ |
w | ❌ | ✔️ | ✔️ |
w+ | ✔️ | ✔️ | ✔️ |
a | ❌ | ✔️ | ❌ |
a+ | ✔️ | ✔️ | ✔️ |
x | ❌ | ✔️ | ✔️ |
x+ | ✔️ | ✔️ | ✔️ |
c | ❌ | ✔️ | ✔️ |
c+ | ✔️ | ✔️ | ✔️ |