Computer Science, asked by viveena6, 2 months ago

name the operator used with cout in c++​

Answers

Answered by JelseyMagda
3

The "c" in cout refers to "character" and 'out' means "output", hence cout means "character output". The cout object is used along with the insertion operator << in order to display a stream of characters. The general syntax is: cout << varName; Or.

MARK ME AS BRAINIEST ANSWER

Answered by devel8181
1

Answer:

cout.put (char &ch): Displays the character stored by ch.

cout.write (char *str, int n): Displays the first n character reading from str.

cout.setf (option): Sets a given option. ...

cout.unsetf (option): Unsets a given option.

cout. precision (int n): Sets the decimal precision to n while displaying floating-point values.

Explanation:

Similar questions