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 |
What is meant by int fun const(int a, int b) { .... ... }
what is the stackpointer
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
what is the function of void main()?
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
What is difference between array and structure in c?
can we implement multi-threads in c.
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; }
How to access or modify the const variable in c ?
16 Answers HCL, HP,
what r callback function?
Is c object oriented?
How to avoid structure padding in C?