0
cin enables us to write in the output we have got????
i think
4 Antworten
+ 13
int number ;
cin >> number; // input to variable
cout << number; // display to console
+ 11
cin enables us to input values to variables through the keyboard.
cout enables us to output values to the console.
+ 1
cin - wait for (user) input (from keyboard)
cout - program output (to your monitor screen)
at least that's default behaviour for Console IN/OUT streams.
But like almost everything you might redefine cin and/or cout.
0
i didn't get you plz explain yorself