How to show output in C Plus Plus?
Here you will come to know how to show output in C++. Here a special command is usedcoutPattern :
cout << "It is Samee Articles: Quality Written Codes Blog. It is How to show output article." ;termination is very important. don't forget it.
thanks.
/*
Name: Show Output.
Copyright: SameeArticles.blogspot.com (Quality Written Codes)
Author: Samee Ullah Feroz
Date: 26/01/14 23:03
Description: Here you will learn C++ basic syntax and function
*/
#include <iostream>
int main()
{ //body starts from here
using namespace std; //It will call all standard functions of C++ before body
cout << "Welcome to Quality Written Codes.";
cout << endl; //It is used to break line
cout << "\tSupported by Samee Ullah Feroz." << endl; //it is an other method to break line.
// "\t" is used to add tab like in PHP language.
system("pause"); //It will help to stop this program
return 0; // It will end this function.
} //body ends here