Google News
logo
C-Language - Interview Questions
What is a sequential access file?
When writing programs that will store and retrieve data in a file, it is possible to designate that file into different forms.

A sequential access file is such that data are saved in sequential order: one data is placed into the file after another.

To access a particular data within the sequential access file, data has to be read one data at a time, until the right one is reached.
Advertisement