#include <iostream>         /// cin, cout

using namespace std;

/// test the get(c) stream member function
void get0()
{
    char c;

    cout << "Please type some characters: ";
    cin.get(c);

    cout << "the 1st "
         << " character typed: "
         << c << endl << endl;
}


int main()
{
    get0();
}