#include #include "tree.h" int main(){ char str[100]; printf("type in your tree(no spaces please): "); scanf("%[^\n]", str); printTree(parse(str),0); return 0; }