Skip to content

Latest commit

 

History

History

lab-8

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

LAB 8

FILE INPUT/OUTPUT IN C++

  • Task #: Write a menu driver program in CPP to illustrate the concept of complete input/output operations on data files. Use a class named "student" with members name, roll, marks and address to represent a record. Your program must be able to do following file operations:
    1. Write n records to the file.
    2. Read current records stored on the file.
    3. Update a record on the file.
    4. Search a record on the file.
    5. Modify a record on the file.
    6. Delete a record on the file.
    7. Compute the no. of records and total file size.