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