basic_ostream::put
Place un caractère dans un flux.
basic_ostream<_Elem, _Tr>& put(
char_type _Ch
);
- _Ch
Caractère.
Une référence à l'objet de basic_ostream.
La fonction de sortie non formatée insère l'élément _Ch.Elle retourne *this.
// basic_ostream_put.cpp
// compile with: /EHsc
#include <iostream>
int main( )
{
using namespace std;
cout.put( 'v' );
cout << endl;
wcout.put( L'l' );
}
en-tête : <ostream>
l'espace de noms : DST