endl
Ukončení řádku a vyprázdnění vyrovnávací paměti.
template class<_Elem, _Tr>
basic_ostream<_Elem, _Tr>& endl(
basic_ostream<_Elem, _Tr>& _Ostr
);
Parametry
_Elem
Typ prvku._Ostr
Objekt typu basic_ostream._Tr
Vlastnosti znaku.
Vrácená hodnota
Objekt typu basic_ostream.
Poznámky
Volání manipulator _Ostr**.put(_Ostr.** widen('\n')), and then calls _Ostr**.**flush.Vrátí _Ostr.
Příklad
// ostream_endl.cpp
// compile with: /EHsc
#include <iostream>
int main( )
{
using namespace std;
cout << "testing" << endl;
}
Požadavky
Záhlaví:<ostream>
Obor názvů: std