/*Program for insertion in AVL tree*/
#include<stdio.h>
#include<malloc.h>
typedef enum {
FALSE ,TRUE } bool;
struct node
{
int info;
int balance;
struct
node *lchild;
struct
node *rchild;
};
struct node
*insert (int , struct node *, int *);
struct node*
search(struct node *,int);