In a C program, you notice that data written to a file is not immediately visible on the disk. What could be a reason for this delay?

  • Buffering
  • File format mismatch
  • File permissions issue
  • Insufficient disk space
Buffering is a common reason for a delay in writing data to a file in C. The system may buffer data before writing it to disk for efficiency. This buffering can cause a delay in making the data visible on the disk.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *