Mega Code Archive

 
Categories / C++ Tutorial / Development
 

Using the endl stream manipulator

#include <iostream> using namespace std; int main() {    cout << "Welcome to ";    cout << "C++!";    cout << endl;   // end line stream manipulator    return 0; }