Endln C++ Code Example


Example: C++ and endl

// endl example #include <iostream>     // std::cout, std::end using namespace std; int main () {    int a=100;   double b=3.14;    cout << a;   cout << endl;              // manipulator inserted alone   cout << b << endl << a*b;  // manipulator in concatenated insertion   endl (cout);               // endl called as a regular function    return 0; }

Comments

Popular posts from this blog

Are Regular VACUUM ANALYZE Still Recommended Under 9.1?

Can Feynman Diagrams Be Used To Represent Any Perturbation Theory?