+ 3
Difference between cout and cin?
34 Réponses
+ 21
cout means output ,cin means input . you are entering something if you use cin , and you are taking results from computer with cout :)
+ 11
cout is used to print something you want and cin is used to input value from users…...
+ 10
cout stands for console output means something you want to show as output on console screen, cin stands for console input used when you need to take input from user on console screen
+ 8
cout is like printf in c, cin is like scanf
+ 8
Cout stands for Compiler out, which is basically the functions that prints out something, Cin stands for Compiler in, which is the functions that allows you to input some information.
+ 7
cout means output for user
cin means input for user
+ 5
cout means output .in C language we hav printf to print the output whereas c++ offers cout in the place of printf . cin means scanf in c language here we use cin instead of scanf to read the data.
cout=displays output.
cin=reads our input
+ 5
cout = output
cin =input
so they are the exact opposite
+ 5
cout means output and cin means input
when u use cout it will print the answer
while cin command will ask the user to input the no.
or character...
+ 4
im gonna say it simple, if you put cin (ex. number) it's gonna ask you to put a number cout is only to read yoru function
+ 4
Cout is what the programm is putting out for example: cout << "Type whatever key" << endl;
Cin would be the user typing in whatever key. Basically (I hope i'm right) cout is what the program puts out and cin is what it receives.
+ 4
cout stands for C(c language)-out(put) so it outputs something and cin stands for C(c language)-in(put) so it "takes" and stores values.
+ 3
cOUT cIN
+ 3
cin is use for enter the any value like integer,float,string.....
cout it use for represnting your input
when use cin and cout it before it input #include<iostream.h>
because. first leter of iostream in 'i' its indecates "input stream file" and second leter is indecates 'o' is "output stream file".
+ 3
Cout - It is related to Output means print something on screen
Cin - It is related to Input means take keyboard input from user
+ 3
cout output when cin input
+ 2
cout inputs the code to the screen and cin takes the users input
+ 2
cout stands for console output means something you want to show as output on console screen, cin stands for console input used when you need to take input from user on console screen
+ 1
"cout" is specifically used for printing something on output screen and "cin" is used to take input.
+ 1
cout is used to give an output......so dose cin is used for input.