

InterviewSolution
Saved Bookmarks
1. |
What will the function do? |
Answer» rewind() takes the file pointer to the beginning of the file. so that the next I/O operation will take place at the beginning of the file. Example: rewind(FilePointer); | |