coding of the back of the iostream.h

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ramandeep singh
    New Member
    • Jan 2014
    • 1

    #1

    coding of the back of the iostream.h

    what is the coding of the back of the <iostream.h>( )?

    please answer the following question.
  • Nepomuk
    Recognized Expert Specialist
    • Aug 2007
    • 3111

    #2
    Hi ramandeep singh and welcome to bytes.com!

    The short answer is: In the compiler.

    For a longer answer, you will have to consider which compiler you're using; some compilers are closed source, so you won't be able to look at the code. G++ is open source and you can find a lot of the information you're looking for in this article The GNU C++ Iostream Library (alternatively here). You can also download the source code via SVN or Git on the GCC website, which will include the implementation of the libio library (which implements iostream.h).

    Comment

    • sudhakar1
      New Member
      • Jan 2014
      • 15

      #3
      Hi,
      This iostream is an Constructs a iostream object.This class inherits all members from its two parent classes istream(INPUT) and ostream(OUTPUT) , thus being able to perform both input and output operations.

      Comment

      Working...