Is there any circumstance when std::cout << "hello"
doesn't work? I have a c/c++ code, however the std::cout
doesn't print anything, not even constant strings (such as "hello").
Is there any way to check if cout
is able/unable to open the stream? There are some member functions like good()
, bad()
, ... but I don't know which one is suitable for me.
Make sure you flush the stream. This is required because the output streams are buffered and you have no guarantee over when the buffer will be flushed unless you manually flush it yourself.
std::cout << "Hello" << std::endl;
std::endl
will output a newline and flush the stream. Alternatively, std::flush
will just do the flush. Flushing can also be done using the stream's member function:
std::cout.flush();