InterviewSolution
Saved Bookmarks
| 1. |
Write the syntax of a file with an example |
|
Answer» Opening a file is performed USING the fopen() function defined in the stdio. H HEADER file. The syntax for opening a file in standard I/O is: ptr = fopen("fileopen","mode");Explanation: |
|