Computer Science, asked by bamiwo1969, 2 days ago

Examples and functions of random access files

Answers

Answered by brijeshgupta75451
0

Answer:

  1. fseek (fp,0,2) - fp moved 0 bytes forward from the end of the file.
  2. fseek (fp, 0, 0) – fp moved 0 bytes forward from beginning of the file.
  3. fseek (fp, m, 0) – fp moved m bytes forward from the beginning of the file.
  4. fseek (fp, -m, 2) – fp moved m bytes backward from the end of the file.
Similar questions