Using get() with Parameters to read single char in : cin get « Console « C++






Using get() with Parameters to read single char in

  
#include <iostream>
using namespace std;
int main()
{
   char a, b, c;

   cout << "Enter three letters: ";

   cin.get(a).get(b).get(c);

   cout << "a: " << a << "\nb: " << b << "\nc: " << c << endl;
   return 0;
}
  
    
  








Related examples in the same category

1.Concatenate get() with Parameters
2.Using get() with no parameters.
3.Using get() with parameters.
4.Using get() with No Parameters to read single char
5.Using get() with a Character Array