I know this is true for C++:
buffering output
cerr: unbuffered stderr
clog: buffered stderr
cout: buffered stdout
In C equivalents for cerr
and cout
are:
cerr: fprintf(stderr, ...)
cout: fprintf(stdout, ...) or printf(...)
Is there an equivalent for clog
?