struct treenode {
int data;
struct treenode * left;
struct treenode * right;
}
typedef struct treenode *btree;
Your program will require a command line argument which is the name of the input...