C/C++
eckel.lst
Associated article: Collections in Turbo C++
Tags: C/C++
_COLLECTIONS IN TURBO C++_
by Bruce Eckel
[LISTING ONE]
// COLLECT.CPP : collection example, with multiple inheritance and
// pointers to members.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
struct item {
virtual ~item() {} // so ...


