Question 596: What will the functionrewind()do?
tcs
wipro
infosys
general
aptitude
library-functions
c-programming
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);