<<<Index>>>

Standard Input Stream


std::istream std::cin; // predefined object
cin >> x; // formatted input
int x = cin.get( ); // unformatted input

 

<<<Index>>>