// Input Manipulators // manipulator.cpp #include #include using namespace std; int main( ) { char a[5], b[2], c[7], d[7]; cout << "Enter strings : "; cin >> setw(5) >> a >> setw(2) >> b >> noskipws >> c >> skipws >> d; cout << "You entered '" << a << "' & '" << b << "' & '" << c << "' & '" << d << "'" << endl; return 0; }