What is the difference between fflush() and std::cout.flush()?
I am just printing some text on Console for a testcase. Begin and end of testcase, i print text for while execution.
End of the test case, i am doing fflush(stdout). Which is correct? Or i can use std::cout.flush()?
Please suggest me.
-Thanks.
fflush(stdout)if youprintfand flush thecoutif you docout << .... – Anton Kovalenko Feb 11 at 13:11