Home » Archives for September 11th, 2009
cerr C++
The “cerr” Object:
The “cerr” object is usually used for printing error messages. This object is similar to “cout” object. The difference is that unlike “cout” object, the output sent by the “cerr” object is not buffered and is displayed immediately. Thus there is a better chance of it being displayed.
The open operation can he tested...