1. Define a wrapper class CString for C-type strings and overload < and=”=” operators=”” such=”” that=”” if=”” we=”” defi=”” ne=”” cstring=”” myname=”ABC” and=”” cstring=”” yourname=”DEF” then=”” statements=”” such=”” as=”” if(myname=””>< yourname),=”” if(myname=”=” “abc”),=”” and=”” if(myname=”=” yourname)=”” work=”” properly.=””>
2. In Program 6.11, we have seen a program where new is overloaded and memory is allocated in four-byte chunks. We did not have overloaded delete to deallocate chunkwise. Now, try to overload new and delete such that they work in tandem.
3. For Problem 14, modify Employee class for its conversion from and to Emp class. Again, nonapplicable items should take default values.