मराठी

Find the Output of the Following C++ Code Considering that the Binary File Clients.Dat Exists on the Hard Disk with a Data of 200 Clients: - Computer Science (C++)

Advertisements
Advertisements

प्रश्न

Find the output of the following C++ code considering that the binary file CLIENTS.DAT exists on the hard disk with a data of 200 clients:

class CLIENTS
{
    int CCode; char CName[20];
public:
    void REGISTER(); void DISPLAY();
};

void main()
{
    £stream File;
    File.open("CLIENTS.DAT", ios::binary|ios::in);
    CLIENTS C;
    File.seekg(6*sizeof(C));
    File.read((char*)&C, sizeof(C));
    cout<<"Client Number: "<<File.tellg()/sizeof(C) + 1;
    File.seekg(0 , ios :: end) ;
    cout<<"of"<<File.tellg(}/sizeof(C)<<endl;
    File.close();
}

उत्तर

Client Number: 7 of 200

shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2016-2017 (March) All India Set 4
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×