cout is used to print text and values to the console screen in C++. Text must be enclosed in double quotes "", while single characters are enclosed in single quotes ''. Values without quotes will be evaluated as expressions. The << operator is used to pass values or text to cout, and the ; semicolon ends the statement. The endl keyword prints a newline to separate lines of printed text.