A)get one next character from the input stream
B)input one next character to the input stream
C)put one next character to the output stream
D)output one next character from the input stream
Answer: put one next character to the output stream
Explanation:
put is a member of the output stream class. So using the code cout which means displaying and the put method which places a character to the output stream. It is in use in C++.