Brief explaination about #include<iostream.h>,
cin and cout
Answers were Sorted based on User's Feedback
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 |
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 |
What is a type library?
What is compilation?
What is a far pointer? where we use it?
What are pointer-to-members in C++? Give their syntax.
What is purpose of abstract class?
What do you mean by storage classes?
What does new do in c++?
When we use Abstract Class and when we use Interface?where we will implement in real time?
What is the use of ::(scope resolution operator)?
What is the use of turbo c++?
what is object?
Explain about templates of C++.