मराठी

Write a Definition for a Function Totalteachers( ) in C++ to Read Each Object of a Binary File Schools.Dat, Find the Total Number Teachers, Whose Data is Stored in the File and Display the Same. Assume that the File Schools.Dat is Created with the Help Objects of Class Schools, Which is Defined Below : - Computer Science (C++)

Advertisements
Advertisements

प्रश्न

Write a definition for a function TotalTeachers( ) in C++ to read each object of a binary file SCHOOLS.DAT, find the total number teachers, whose data is stored in the file and display the same. Assume that the file SCHOOLS.DAT is created with the help objects of class SCHOOLS, which is defined below :

class SCHOOLS
{
    int SCode;        //School Code
    char SName[20];   //School Name
    int NOT;          // Name of Teachers in the school

public:
    void Display()
    {
       cout<<SCode<<"#"<<SName<<"#" << NOT << endl;
       int RNOT() {return NOT;}
};

उत्तर

void putnot()
{
    cout <<NOT<< "  ";
}

void TotalTeachers()
{ 
     fstream f;
     SCHOOLS Stu;
     f.open("SCHOOLS.DAT", ios::in|ios::binary);
     cout << “\nTotal no. of Teachers : \n”;
     while((f.read((char*)&Stu, sizeof(Stu))) != NULL)
     Stu.putnot();
     f.close();
}
shaalaa.com
Implementation of Basic File Operations on Text and Binary File in C++
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2017-2018 (March) All India Set 4
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×