cin cout in c++ code example
Example 1: cin in c++
cin >> varName;
Example 2: C++ cin cout
int age;
cout << "How old are you ?" << endl;
cin >> age;
Example 3: get data from terminal c++
int i;
cout << "Please enter an integer value: ";
cin >> i;