Information Keep in Mind :
- cout is an object of class ostream that represents the standard output stream.
- It corresponds to the cstdio stream stdout.
General Purpose :
- Prints Message on Screen.
- Printing Value of Variable on Screen.
Version 1 : .h Style
#include<iostream.h> int main() { cout <<"Hello,Welcome to C++"; return(0); }
Output :
Hello,Welcome to C++