summaryrefslogtreecommitdiff
path: root/main.c
blob: 566330cf05cead099ca966b8ab64860b036cfa79 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include "tree.h"

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