Mega Code Archive

 
Categories / C++ Tutorial / Development
 

An IO manipulator

#include <iostream>  #include <iomanip>  using namespace std;    int main()  {    cout << setw(20) << "Hello there.";      return 0;  } Hello there.