Question: Identify and correct the errors in the code segments in Exercises a) through f) a) fstream myfile(info.dat); if(myfile) { cout < < Error in file
Identify and correct the errors in the code segments in Exercises a) through f)
a)
fstream myfile("info.dat");
if(myfile)
{
cout << "Error in file opening.";
exit(1);
}
b)
ifstream fstr;
fstr.open("A:\info.dat", ios::out);
c)
ofstream fout("comparts.dat");
if(fout.fail())
{
cerr<<"Error in file opening.";
exit(1);
}
fout.seekp(-2*sizeof(compart), ios::end);
fout.read((char*)&part.sizeof(compart));
d)
ifstream fin("info.dat", ios::app);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
