A couple of points. Why not text = NULL; (or text = 0) since we clearly want the null string in the overloaded function? No good reason, just a common practice.
|
||||||||||||
cin >> N; |
// in C >> is right-shift bitstring |
|||||||||||
In C++ the >> also represents an input operation, not a left shift operation on bit strings, as it does in C. Different purposes saves on the need to create more symbols. |
||||||||||||
March 11, 1998 |
Page 8 |
C201/TAM |