InterviewSolution
Saved Bookmarks
| 1. |
_____removes the named file, so that a subsequent attempt to open it will fail.(a) remove(const *filename)(b) remove(filename)(c) remove()(d) fclose(filename)The question was asked in exam.My question is from File Operations topic in chapter Input and Output in C of C |
|
Answer» Correct choice is (a) REMOVE(const *filename) |
|