InterviewSolution
Saved Bookmarks
| 1. |
Write statement to move the input pointer in the file to the beginning of the file |
|
Answer» Explanation:function is USED to move FILE pointer position to the given location. whence – This is the current file pointer position from where offset is added. Below 3 CONSTANTS are used to specify this. SEEK_SET – It MOVES file pointer position to the beginning of the file. |
|