#include int stack(void); int list(void); int tree(void); int main(int argc, char **argv) { list(); tree(); getchar(); return 0; }