..

FreePrograms


C programming Tutorial 

Free C Programs, C Programs Download


Embedded C lang & 8051(Embedded Products)


  CONTACT US   ABOUT US   PRIVACY  DISCLAIMER

FREE C PROGRAMS 

 C Tutorial for beginners
What is C C vs C++ vs Java Program Structure Data Types in C Basic Rules of C & C++
Functions in C If, Else Conditions Loops in C Switch Case Arrays
Pointers Structures in C Strings in C Command Line Arguments Type Casting
Linked Lists Recursion Binary Trees Inheritance Multiple Inheritance
Templates File I/O Object Oriented Programming  Data Structures in C C interview Questions

/*iostream.h Header file    C++/CPP Tutorial.*/


In C language Tutorial we told you about stdio.h and conio.h header files.

In CPP we will focus on iostream.h header file.

iostream is a header file which is used for input/output in the C++ programming language.

It 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. 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.

As we can see in the above program it uses cout to print Hello World! on screen.

 

COPYRIGHT 2009 ALL RIGHTS RESERVED FREECPROGRAMS.COM