Questions tagged [clog]
17 questions
0
votes
3 answers
Considering the C++ program below, what should be inserted in place of //***** to ensure a 100% clean shutdown?
This is an exam question:
Considering the C++ program below, what should be inserted in place of
//***** to ensure a 100% clean shutdown?
#include
#include
int main(int argc, char* argv[])
{
using namespace std;
…

user3092410
- 17
- 3
-1
votes
1 answer
Equivalent to C++'s std::clog in Python?
This piece of C++ code will display a "loading text" on the Terminal as the main program renders an image. I know that it does it because of the std::clog. I've been searching, and I think that the subprocess module can help me with reproducing this…

Lucas Cafieiro
- 55
- 5