+ 2
What is the meaning of iostream
the usefulness
11 Answers
+ 23
i=input
o=output
Stream=sequence of bytes
iostream contains all standard library functions required for writing a basic program
+ 15
iostream is the standard library for basic input/output operations. cin and cout belong to it.
+ 3
it is a header function..to be precise <iostream>- 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.Â
+ 3
But it's not working...says iostream.h : no such file or directory!?.....help!
How to solve this problem??
+ 1
iostream is a header file in which some function is already defined like cout,cin... etc.
Full form of iostream is input output stream
0
It is a header file or main file
0
iostream is a standard library function contains input and output operations
0
iostream is a header defines the standard stream that input and output data
0
it is header and main function from which our programme start
0
iostream is a headerfile which consists of predefined functions like cout and cin,without this headerfile your functions that are declared and defined in this headerfile will not work.
0
iostream is a header file and it is standard library which consist cin,cout and cerr called operations.