+ 5
"\n" is just a string of length 1 that gets appended to stdout. endl , instead, is an object that will cause to append the newline character ( "\n" ) AND to flush stdout buffer. For this reason it will take more processing.
12th Apr 2017, 4:24 PM
Zemichael
Zemichael - avatar