name the operator used with cout in c++
Answers
Answered by
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
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