What is x+ mode in fopen() used for?
Options
- Read/Write. Creates a new file. Returns FALSE and an error if file already exists
- Write only. Creates a new file. Returns TRUE and an error if file already exists
- Read/Write. Opens and clears the contents of file;
- Write. Opens and clears the contents of file;
CORRECT ANSWER : Read/Write. Creates a new file. Returns FALSE and an error if file already exists
Write your comments