_C PROGRAMMING COLUMN_ by Al Stevens Example 1: (a) #include #include main() { cout << setw(6) << "hello"; } (b) friend ostream& operator<<(ostream& o, smanip& m) { (*m._f)(o, m._a); return o;} Example 2: #include int main() { cout << "hello"; }