What is the difference between the cout and cin iostream
objects?
Answers were Sorted based on User's Feedback
Answer / satyagmk
cin is for reading the data.
cout if for print/display the result at the output.
| Is This Answer Correct ? | 52 Yes | 5 No |
Answer / udit bali
1. cin is used to get data from the user and on other hand cout is used to print the data on the screen for the display.
2. cout and cin both are used under iosteam library.
3. cin operator is ">>" and cout operator is "<<"
| Is This Answer Correct ? | 35 Yes | 8 No |
Answer / farkhanda
cin and cout both are used in iostream library
cin is same as "scanf" in C and cout is same as "printf" in C
cin operator is always ">>"
and
cout operator is always "<<"
the general syntax for cout is .... cout<<variable<<variable2<<....<<variable n;
the general syntax for cin is ....
cin>>variable1>>variable2>>.....>>variable n;
| Is This Answer Correct ? | 19 Yes | 6 No |
Answer / muhammad haroon
Cin stand console input and cout stand for console output.
Cin get data from user at compile time and cout display the data on computer screen .
These are predefined in c++
Cin operator is >> and cout operator is<<.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / mukta b
• Cin : Represented by insertion operator >>
Cout : Represented by extraction operator <<
• cin : is an object of input streams like consoles, files, etc.
Cout : is an object of output streams that's used to show outputs.
• cin : is an input statement
cout : is an output statement
Example :
#include<iostream.h>
#include<conio.h>
void main()
{
int a;
cout<<"Enter value for a: "; //taking value of a
cin>>a; //inputing value
cout<<"A = "<<a; //outputing value
getch();
}
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / osama ilahi
cin called stream extraction and cin means to in input the information .
cout callled stream insertion and cout means to output information.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / arfa mumtaz
The cout is pronounced as see out
The cin is pronounced as see in
| Is This Answer Correct ? | 1 Yes | 9 No |
What is a mnemonic?
How will slove problem comes wirh Hybrid Inheritance?
How many microsoft visual c++ do you need?
What is iunknown? Explain some of commonly used methods provided by iunknown.
What is dao in vc ++?
What is the difference between Undo and Redo?
How do I create an mfc application in vc++?
Can I delete old microsoft visual c++?
What is the use of DDV and DDX routines ?
What property is used to indicate that the up-down control is associated with a buddy control?
hi i have 1180 in gre and 109 in toefl i have one more backlog to clear now. My classes got over in 2007 july. can i put a course completion certificate for my f1 visa interview. plz help
How do you handle drag and drop in ole?