This is an exam question:
Considering the C++ program below, what should be inserted in place of
//*****
to ensure a 100% clean shutdown?#include <iostream> #include <fstream> int main(int argc, char* argv[]) { using namespace std; fstream log("log.txt", ios::out); streambuf* clog_buf = clog.rdbuf(log.rdbuf()); clog << "Test the logger" << endl; //***** }
- A. Nothing is missing.
- B. exit();
- C. clog.rdbuf(clog_buf);
- D. clog.rdbuf(0);
- E. log.rdbuf(0);
I am rather confused on the use of log
and clog
in this code. Why can't we just create a file and write down everything we need? Any explanation would be appreciated.
clog_buf
points to the stream buffer that clog pointed to before you reset it withrdbuf
. A clean shutdown can be achieved by resetting clog's stream buffer to what it was before by using C (clog.rdbuf( clog_buf );
).