0
kicks
C++ Programming: cout
In c++, cout is used to print data on the screen. The statement #include <iostream> is used add the file - iostream to the source code. The file - iostream (input-output-stream) is used by cout and its related function.
Type cout followed by insertion operator (<<) followed by your data and terminate it by semi-colon.