0% found this document useful (0 votes)
61 views3 pages

Work With File: #Include #Include #Include #Include Using Namespace Class Int Char Public Void

This program allows the user to manage student records stored in a binary file. It provides the following options: 1. Add a new student record 2. Display all student records 3. Search for a student by admission number 4. Delete a student record by admission number 5. Modify an existing student record by admission number Student data including admission number and name are stored in a class object which is written to and read from the binary file.

Uploaded by

SreePrakash
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
61 views3 pages

Work With File: #Include #Include #Include #Include Using Namespace Class Int Char Public Void

This program allows the user to manage student records stored in a binary file. It provides the following options: 1. Add a new student record 2. Display all student records 3. Search for a student by admission number 4. Delete a student record by admission number 5. Modify an existing student record by admission number Student data including admission number and name are stored in a class object which is written to and read from the binary file.

Uploaded by

SreePrakash
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Work with File

#include <iostream>
#include <fstream>
#include <conio.h>
#include <stdio.h>

using namespace std;

class student
{
int admno;
char name[20];
public:

void getdata()
{
cout<<"\nEnter The admission no. ";
cin>>admno;
cout<<"\n\nEnter The Name of The Student ";
cin>>name;
}
void showdata()
{
cout<<"\nAdmission no. : "<<admno;
cout<<"\nStudent Name : ";
puts(name);
}
int retadmno()
{
return admno;
}
};

void write_date();
void display();
void search(int);
void deleterecord(int);
void modifyrecord(int);

void main()
{

int opt;
cout<<"1:New student ."<<endl;
cout<<"2:Display recored of a student ."<<endl;
cout<<"3:Search a student ."<<endl;
cout<<"4:Delete recored of a student ."<<endl;
cout<<"5:Modify a recored of student ."<<endl;
cout<<"6:Exit ."<<endl;
cout<<" Select your task:"<<endl;
int no;
cin>>opt;
switch(opt)
{
case 1:{

write_date();
break;}
case 2:{
display();
break;}
case 3:{

cout<<"Enter the admin no to search :"<<endl;


cin>>no;
search(no);
break;}
case 4:{
cout<<"Enter the admin no to delete :"<<endl;
cin>>no;
search(no);
deleterecord(no);
break;}
case 5:
{
cout<<"Enter the admin no to modify :"<<endl;
cin>>no;
search(no);
modifyrecord(no);
break;}
default:
exit(0);

_getch();

void write_date()
{
student obj;
ofstream fp2;
fp2.open("student.dat",ios::binary|ios::app);
obj.getdata();
fp2.write((char*)&obj,sizeof(obj));
fp2.close();
}
void display()
{
student obj;
ifstream fp1;
fp1.open("student.dat",ios::binary);
while(fp1.read((char*)&obj,sizeof(obj)))
{
obj.showdata();
}
fp1.close();
}
void search (int n)
{
student obj;
ifstream fp1;
fp1.open("student.dat",ios::binary);
while(fp1.read((char*)&obj,sizeof(obj)))
{
if(obj.retadmno()==n)
obj.showdata();
}
fp1.close();
}
void deleterecord(int n)
{
student obj;
ifstream fp1;
fp1.open("student.dat",ios::binary);
ofstream fp2;
fp2.open("Temp.dat",ios::out|ios::binary);
while(fp1.read((char*)&obj,sizeof(obj)))
{
if(obj.retadmno()!=n)
fp2.write((char*)&obj,sizeof(obj));
}
fp1.close();
fp2.close();
remove("student.dat");
rename("Temp.dat","student.dat");
}
void modifyrecord(int n)
{
fstream fp;
student obj;
int found=0;
fp.open("student.dat",ios::in|ios::out);
while(fp.read((char*)&obj,sizeof(obj)) && found==0)
{
if(obj.retadmno()==n)
{

obj.showdata();
cout<<"\nEnter The New Details of student";
obj.getdata();
int pos=(-1)*sizeof(obj);
fp.seekp(pos,ios::cur);
fp.write((char*)&obj,sizeof(obj));
found=1;
}
}
fp.close();
}

You might also like