For an exercise I\'m doing, I\'m trying to read the contents of a given file twice using the read() method. Strangely, when I call it the second time, it doesn\
read()
The read pointer moves to after the last read byte/character. Use the seek() method to rewind the read pointer to the beginning.
seek()