Tools.h++ Manual
2-2 104011 Tandem Computers Incorporated
2
If this were a C program it would probably be given a suffix of
.c
.
Unfortunately, there is no standard suffix for C++ programs. We have adopted
.cc
. Fortunately, most compilers can be forced to accept a different suffix.
RWDate date;
// Print it out:
cout << date << endl;
return 0;
}










