Which one of the following is correct syntax for opening a file.
(a) FILE *fopen(const *filename, const char *mode)
(b) FILE *fopen(const *filename)
(c) FILE *open(const *filename, const char *mode)
(d) FILE open(const*filename)
The question was asked in final exam.
My question is based upon File Operations in section Input and Output in C of C