Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Home
»
C Programming
»
Library Functions
What will the function rewind() do?
Reposition the file pointer to a character reverse.
Reposition the file pointer stream to end of file.
Reposition the file pointer to begining of that line.
Reposition the file pointer to begining of file.
Show Answer
Correct Answer:
Reposition the file pointer to begining of file.
Explanation:
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);
Next →
Discussion & Comments
No comments yet. Be the first to comment!
Name:
Comment:
Post Comment