What is a sequential access file?



What is a sequential access file?..

Answer / Vijay Kumar Kannojia

A sequential access file is a type of file in C programming where data can only be accessed sequentially (from the beginning to the end or vice versa). Each record is stored in a consecutive block, and each record must be read in sequence from the start.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

What is meant by int fun const(int a, int b) { .... ... }

1 Answers  


what is the stackpointer

2 Answers  


how does the C compiler interpret the following two statements p=p+x; q=q+y; a. p=p+x; q=q+y b. p=p+xq=q+y c. p=p+xq; q=q+y d. p=p+x/q=q+y

2 Answers   TCS, Tech Synergy,


what is the function of void main()?

8 Answers  


Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates

3 Answers  


What is difference between array and structure in c?

1 Answers  


can we implement multi-threads in c.

1 Answers  


what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }

9 Answers   HCL,


How to access or modify the const variable in c ?

16 Answers   HCL, HP,


what r callback function?

1 Answers  


Is c object oriented?

1 Answers  


How to avoid structure padding in C?

8 Answers   Tech Mahindra,


Categories