Binary Tree using Linked List Arun 07:21 0 #include <stdlib.h> #include <stdio.h> struct node { int data; struct node *lc; struct node *rc; }; void build_tree ...