Answer to Question #70556 in C++ for Dewayne

Question #70556
Fill in the following code to crash the program if the file fails to open

#include <iostream>
#include <fstream>
#include<__________>

using namespace std;

int main(){

ifstream.inf;

inf.open("input.txt");

if(!inf){

cout << "Failed to open file" << endl;
___________(_________) // type either true or false in the parenthesis which ever one would make the program crash
}

return 0;

}
1
Expert's answer
2017-10-13T15:14:53-0400
#include <iostream>
#include <fstream>

using namespace std;

int main()
{
ifstream inf;

inf.open("input.txt");

if(!inf){
cout << "Failed to open file" << endl;
exit(1);
}

else
{
cout<<"OK"<<endl;
inf.close(); // close file
}
return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS