Brief explaination about #include<iostream.h>,
cin and cout

Answers were Sorted based on User's Feedback



Brief explaination about #include<iostream.h>, cin and cout..

Answer / geetha

#include<iostream.h> is a header file .it helps to perform
the cin,cout statements.
1.iostream-input output stream.
2.cin is like a scanf statement in "C" but it do not need a
format specification.this also called as right in operator
(ie)scanf("%d,%d",&a,&b)
cin>>a>>b
3.cout is like a printf statement in "C" but it do not need
a format specification.this also called as left out
operator
(ie)printf("%d,%d",a,b)
cout<<a<<b

Is This Answer Correct ?    7 Yes 2 No

Brief explaination about #include<iostream.h>, cin and cout..

Answer / prabakaran

iostream-input and output stream
contain-cin,out(input and output stream)
cin-get data value from user
cout-put data value to screan

Is This Answer Correct ?    5 Yes 0 No

Brief explaination about #include<iostream.h>, cin and cout..

Answer / iyyappan

cin

Is This Answer Correct ?    4 Yes 8 No

Post New Answer

More C++ General Interview Questions

3- Write a program to find larger and smaller of the two numbers.

4 Answers   Luminous,


Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;

1 Answers  


How will you call C functions from C ++ and vice-versa?

0 Answers   Agilent, Tavant Technologies, Thomson Reuters, Verifone,


Adobe Interview & Adobe Placement Paper

1 Answers   Adobe,


What are static type checking?

0 Answers  






Explain method of creating object in C++ ?

0 Answers   Wipro,


Which programming language is best?

0 Answers  


Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;

0 Answers  


What is ofstream c++?

0 Answers  


What is a singleton c++?

0 Answers  


What is function prototyping? What are its advantages?

0 Answers  


What is a container class? What are the types of container classes?

1 Answers  


Categories