Article Listing 1 Listing 2 Listing 3 Listing 4 nov2000.tar

Listing 1: max.h

#define max(x,y) ((x > y) ? x : y)

struct node {
   int x;
};