bool remove(const Key& k, E& rtnVal)
{
….code
}
bool removeAny(E& returnValue)
{
….code
}
bool find(const Key& k, E& returnValue) const = 0;
{
….code
}
In C++ How would you call (in main .cpp) these functions thatare in a seperate .h file ?
Expert Answer
An answer will be send to you shortly. . . . .