Why does printf not flush after the call unless a newline is in the format string? Is this POSIX behavior? How might I have printf immediately flush every time?
|
The Print to stderr instead using
Flush stdout whenever you need it to using
Edit: From Andy Ross's comment below, you can also disable buffering on stdout by using
|
|||||||||||||||
|
|
No, it's not POSIX behaviour, it's ISO behaviour (well, it is POSIX behaviour but only insofar as they conform to ISO). Standard output is line buffered if it can be detected to refer to an interactive device, otherwise it's fully buffered. So there are situations where
This makes sense for efficiency since, if you're interacting with a user, they probably want to see every line. If you're sending the output to a file, it's most likely that there's not a user at the other end (though not impossible, they could be tailing the file). Now you could argue that the user wants to see every character but there are two problems with that. The first is that it's not very efficient. The second is that the original ANSI C mandate was to primarily codify existing behaviour, rather than invent new behaviour, and those design decisions were made long before ANSI started the process. Even ISO nowadays treads very carefully when changing existing rules in the standards. As to how to deal with that, if you Alternatively, you can use
Just keep in mind that may affect performance quite a bit if you are sending the output to a file. Also keep in mind that support for this is implementation-defined, not guaranteed by the standard. ISO C99 section
|
|||||||||
|
|
To immediately flush call fflush(stdout) or fflush(NULL) (NULL means flush everything). |
|||||
|
|
It's probably like that because of efficiency and because if you have multiple programs writing to a single TTY, this way you don't get characters on a line interlaced. So if program A and B are outputting, you'll usually get:
This stinks, but it's better than
Note that it isn't even guaranteed to flush on a newline, so you should flush explicitly if flushing matters to you. |
|||
|
|
|
stdout is buffered, so will only output after a newline is printed. To get immediate output, either:
|
|||
|
|
|
You can fprintf to stderr, which is unbuffered, instead. Or you can flush stdout when you want to. Or you can set stdout to unbuffered. |
|||
|
|
|
Note: Microsoft runtime libraries do not support line buffering, so printf("will print immediatelly to terminal"): |
|||
|
|
|
by default, stdout is line buffered, stderr is none buffered and file is completely buffered. |
|||
|
|
setvbuf(stdout, (char*)NULL, _IONBF, 0)works around the problem, but surely should not have been necessary. I'm using MSVC++ 2008 Express. ~~~ – Steve Pitchers Jan 8 at 14:10