Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started