0
c++
is it right to call cin, cout commands or should i say them objects .. which one is right and why
3 Antworten
+ 1
They are objects, or streams. There are no commands in C++.
+ 1
cin is object of the class istream.
cout is object of the class ostream.
0
thanks guys.. i got that✌✌