This tutorial will explain how to use Input Statement in C++
The figure gives the general format of an Input Statement. The identifier cin is used along with the extraction operator » to get an Input Statement from the user. The figure lists some examples of an Input Statement.
Format for Input Statement is: cin >> variable;
cin - indentifer in C++
>> - Input operator.

