my program is not working properly after taking values it gets overflow
#include<stdio.h>
#include<conio.h>
void insert(struct node**, int);
struct node *ptr;
struct node
{
int data;
struct node *right;
struct node *left;
};
void main()
{
int will , i , num;
ptr = NULL...