C/C++
charney.lst
Associated article: C++ Manipulators and Applicators
Tags: C/C++
_C++ Manipulators and Applicators_
by Reginald B. Charney
Example 1:
(a)
// quote argument string and then
// output it.
ostream& qStr(char* s)
{ return cout<<"'"<<s<<"'"; }
cout << &...


