What is the C++ iostream endl fiasco?
(I assume) He just means that many, especially new, C++ programmers use std::endl blindly instead of ‘\n’ for newline, flushing unnecessarily frequently and potentially making the performance of their program abysmal. I.e., most people are taught that std::endl is the canonical way to insert a newline into a stream even though it is very rarely … Read more