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 are the different types of comments allowed in c++?
What are guid? Why does com need guids?
When should we use container classes instead of arrays?
Am pass the 10000 records to target in target I will take commit interval 15000 when I was stop the work flow what will happened
Mention the purpose of istream class?
Write a program to concatenate two strings.
How do you master coding?
What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }
Name four predefined macros.
Can we make any program in c++ without using any header file and what is the shortest program in c++.
What is the difference between the functions rand(), random(), srand() and randomize()?
Define the operators that can be used with a pointer.