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

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools