CIN
Cin is most commonly encountered as the standard input stream in the C++ programming language, written as cin in code. In C++, cin is part of the iostream library and is typically referred to as std::cin. It provides access to the program’s standard input device, usually the keyboard, and is used with the extraction operator (>>) to read formatted values into variables.
Usage is straightforward: cin reads input according to the type of the destination variable. For example, int
Performance and portability notes: To improve I/O performance, programmers may disable synchronization with C I/O by