The figure gives the general format of an output statement. The identifier cout is used along with the insertion operator << to output the variables and displays it on the screen.
Format: cout<<variable;
cout - indentifer
<< - insertion operator

