how works iostream.h in c++ ?

Asked by Last Modified  

9 Answers

Learn BA Tuition +1 C++ Programming

Follow 0
Answer

Please enter your answer

Trainer

Provides functionality to use an abstraction called streams specially designed to perform input and output operations on sequences of character, like files or strings. Objects cin, cout are from iostream header. conio.h console input output header file conio.h is a C header file used in old MS-DOS...
read more
Provides functionality to use an abstraction called streams specially designed to perform input and output operations on sequences of character, like files or strings. Objects cin, cout are from iostream header. conio.h console input output header file conio.h is a C header file used in old MS-DOS compilers to create text user interfaces Both are header files which contains libery of serveral functions (use for input & output ). eg. clearscr() ,getch() are from conio.h This is type of opening files before we use these function. If we use these function them without importing header files , sometimes compiler throws error. read less
Comments

Computer Science Expert

iostream.h- input output stream header file Provides functionality to use an abstraction called streams specially designed to perform input and output operations on sequences of character, like files or strings. Objects cin, cout are from iostream header. It contains libery of serveral functions...
read more
iostream.h- input output stream header file Provides functionality to use an abstraction called streams specially designed to perform input and output operations on sequences of character, like files or strings. Objects cin, cout are from iostream header. It contains libery of serveral functions (use for input & output ). This is type of opening files before we use these function. If we use these function them without importing header files , sometimes compiler throws error. read less
Comments

solution to all

Its an input output steam .h and this headerfile will help you touse the predefined functions such as cout and cin in c++ language
Comments

Like the cstdio header inherited from C's stdio.h, iostream provides basic input and output services for C++ programs. iostream uses the objects cin , cout , cerr , and clog for sending data to and from the standard streams input, output, error (unbuffered), and log (buffered) respectively. iostram.h...
read more
Like the cstdio header inherited from C's stdio.h, iostream provides basic input and output services for C++ programs. iostream uses the objects cin , cout , cerr , and clog for sending data to and from the standard streams input, output, error (unbuffered), and log (buffered) respectively. iostram.h is a header file , so when the program executes , it searches the header file in path mentioned in unix of makefile , after finding the location it expands iostream.h in the file and all the functions defined inside iostream,h becomes avaiable to our program... for more details contact Space time continuum Inc, #1204.16th main, second stage BTM , saturday after 10 a.m read less
Comments

C++ Tutor

iostream is just a header file where all the input output stream related functions are written. when you use iostream.h , you can use all prewritten functions of that e.g you don't define cin or cout anywhere in your function, but still you can use them , its because what they have to do is already written...
read more
iostream is just a header file where all the input output stream related functions are written. when you use iostream.h , you can use all prewritten functions of that e.g you don't define cin or cout anywhere in your function, but still you can use them , its because what they have to do is already written in iostream header file. read less
Comments

IT Professional Trainer 14 years oof experience certified by Govt.Of India MSME.

iostream means Input Output STREAM hence iostream is used for input output purposes.it might also provide them in the global name-space just as stdio.h might provide them in namespace std, cin and cout are the object part of iostream.h.
Comments

Computer wizard, good at languages, expert in south indian dishes,expert in typing,ready to take classes for KG to 8 th standard, diploma in mechanical,electrical,automobile, B.tech - computers, electronics, business analysis, manual testing.

using parsers
Comments

Software Engineer

iostream - operates on characters of type char iostream contains the definition of basic_iostream class template, which implements formatted input and output C++ input/output streams are primarily defined by iostream, a header file that is part of the C++ standard library (the name stands for Input/Output...
read more
iostream - operates on characters of type char iostream contains the definition of basic_iostream class template, which implements formatted input and output C++ input/output streams are primarily defined by iostream, a header file that is part of the C++ standard library (the name stands for Input/Output Stream). In C++ and its predecessor, the C programming language, there is no special syntax for streaming data input or output. Instead, these are combined as a library of functions. Like the cstdio header inherited from C's stdio.h, iostream provides basic input and output services for C++ programs. iostream uses the objects cin, cout, cerr, and clog for sending data to and from the standard streams input, output, error (unbuffered), and log (buffered) respectively. As part of the C++ standard library, these objects are a part of the std namespace. read less
Comments

C++ Developer

iostream.h (or just iostream in modern c++) is simply a header file, where cin, cout, cerr, clog, wcin, wcout, wcerr, wclog like system streams are defined. adding the header file iostream includes ios, streambuf, istream, ostream and/or iosfwd. Simply, it's a header file where input&output classes...
read more
iostream.h (or just iostream in modern c++) is simply a header file, where cin, cout, cerr, clog, wcin, wcout, wcerr, wclog like system streams are defined. adding the header file iostream includes ios, streambuf, istream, ostream and/or iosfwd. Simply, it's a header file where input&output classes are declared. You can include the file to use that classes, then the iostream.h also compiles with your code. read less
Comments

View 7 more Answers

Related Questions

What about a good computerized language which I can learn soon?
if you are a beginner then you can start with java because it is in high demand, but you should practice the programs from class 11 and 12 isc books because there are lots of programs to implement, after...
Sabat
i want to learn english to improve my english communication. I am good in good in english but want to be excellent.
start reading a lot from fiction to paperbacks; that will enhance your vocabulary to a more advanced level and you will sense a natural progress in your manner of communication.
Sachin
0 0
9
In what why i got general ability for my BSNL exam?
I don't think you have to much worry about the GA section the questions are very basic and you can attempt 15/20 so just read technical section and go for exam, you can qualify with your technical section...
Supraja
please make me clear about tenses
Tense is a Form of the Verb which describes and explains the Time of the Action. Verb is word which describes the action being done by the Subject. So in short Tenses tell us about the Time during an...
Hannah
2 0
6

Now ask question in any of the 1000+ Categories, and get Answers from Tutors and Trainers on UrbanPro.com

Ask a Question

Related Lessons

Do You Know From Where Pizza Got Its Name?
Well, we all know that pizza is circular in shape having some height and therefore thus making cylindrical shape. And the Volume of Cylinder is Πr2h where 'r' is the radius of circular part and 'h'...

Communication Rules
The rules for communication are as follows: 1. Ensure that the conversation or the delivery of the dialogue fits the purpose. 2. The information you share must be accurate, in brief and the content...


How To Learn Theory Subjects
How To Learn Theory Subjects Without marking, correlation, set views in mind & revise you can’t remember any subjects which are theoretical or have numerical formulas..... First select...

C++: Array As Function Argument
Array as Function Argument: C++ #include using namespace std; void f1(int a, int size) //A user-defined function which takes an 'int array' as arguments { for(int i=0;i<size;i++) { ...

Recommended Articles

Whatever you learn in college is no doubt very important and forms the base for your future professional career. However, lack of hands-on experience, business oriented skills and interpersonal skills, among fresh graduates are making them unfit for employment in competitive business environment. Today organizations operate...

Read full article >

Most of the students decide what stream they are going to choose at the school level. Science, commerce and arts are the main fields, and students need to choose any one between these three. Although there are many such professional courses available, most students like to select one of these three streams. In college,...

Read full article >

During the last days in school, every student waits for their college life. It is, of course, exciting to get admission in your dream college with the course you wanted to pursue. Its your effort and struggle that makes you part of the college that you aimed for. Yet, once the first month passes all students forget their...

Read full article >

Whether you are doing graduation or post graduation, no college student can escape from the misery of college dissertation. College dissertation is a detailed research project on a topic of your choice, approved by professors. At the beginning of the dissertation you have to set a hypothetical aim and at the end, you have...

Read full article >

Looking for BA Tuition ?

Learn from the Best Tutors on UrbanPro

Are you a Tutor or Training Institute?

Join UrbanPro Today to find students near you