• Stars
    star
    1
  • Language
  • Created over 4 years ago
  • Updated over 4 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Input and output are critical pieces of C++ programs (or any program). In C++, input/output (I/O) is handled through streams, which are really modes of data transmission. The class iostream supports I/O operations. The key child classes for input are cin, and for output the class is cout.