1.

How Would Find Total Records In Files Using Sequential?

Answer»

We can increment the COUNT for each READING of record in a FILE.

READ file
count = count + 1
At end
DISPLAY count

We can increment the count for each reading of record in a file.

Read file
count = count + 1
At end
display count



Discussion

No Comment Found