Table of Contents
Previous Section Next Section

put

#include <iostream>ostream &put(char ch);

The put( ) function is a member of ostream.

The put( ) function writes ch to the associated output stream. It returns a reference to the stream.

Related functions are write( ) and get( ).


Table of Contents
Previous Section Next Section