Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the difference between the cout and cin iostream
objects?

Answers were Sorted based on User's Feedback



What is the difference between the cout and cin iostream objects? ..

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

What is the difference between the cout and cin iostream objects? ..

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

What is the difference between the cout and cin iostream objects? ..

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

What is the difference between the cout and cin iostream objects? ..

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

What is the difference between the cout and cin iostream objects? ..

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

What is the difference between the cout and cin iostream objects? ..

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

What is the difference between the cout and cin iostream objects? ..

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

Post New Answer

More VC++ AllOther Interview Questions

Suppose multiple threads accessing a registry key at a time. In that case which synchronization object you will use?

4 Answers   Microsoft,


How do you handle drag and drop in ole?

0 Answers  


What is the difference between the client and non-client areas?

2 Answers  


What is vc++ programming?

0 Answers  


How can we allow no selection of radio button in grouped radio buttons?

2 Answers  


A file a.cpp & B.cpp are complied & linked together in VC++ file a is something like int a =100;, File B is something like extern a; main() { printf("%d",a); }what will be the output.a)100,b)linker error,c)complier error etc etc.

3 Answers   Honeywell,


What is the difference between the cout and cin iostream objects?

7 Answers  


What Is Your Greatest Weakness?

4 Answers   Apple, Infosys, IOCL, Servion, TCS, VisionTek,


Where can I find microsoft visual c++ on my computer?

0 Answers  


Differences between vc 6.0 and vc 7.0

1 Answers   Honeywell,


Can I uninstall visual c++?

0 Answers  


What is the Use of the Developer Studio Editor?

0 Answers   HCL,


Categories