0
what is the cin exactly?
what is the cin exactly?
7 ответов
+ 5
cout and cin are not key words in the C++ language. They are VARIABLE'S, instances of classes, that have been declared in <iostream>.
cout--- is a variable of type. ostream.
cin---- is a variable of type. istream.
+ 3
cin allows the user to input a value for an existing variable. E.g: int myVar; cin>>var. if I put 5, the variable myVar now has the variable 5.
+ 1
cin is used to get string or variable data from the user
+ 1
Cin and Cout are telling how to obtain and display information
0
cin pronounced "see -in" is used to take data from users to process it for result or output
0
cin is used to get input from the user
- 2
cin is like input in python
if you have some knowlegde on python