Posts by Leo Possi • 21 points
1 post
-
2
votes3
answers138
viewsA: Why does the Endl exist in C++ and n already performs the same procedure?
the \n only takes up one space in the string to skip the line already the endl is an object that executes a \n, but also makes a flush in the buffer stdout the endl is a better practice in the code,…