Using get() with parameters. : cin get « Console « C++






Using get() with parameters.

  
#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 No Parameters to read single char
4.Using get() with Parameters to read single char in
5.Using get() with a Character Array