Recent content by ma12

  1. M

    Program Overflow: Troubleshooting Tips

    in void insert if(num < (*p) -> data) { printf("directed to left "); insert ( &((*p) -> left) ,num); } else { printf("Directed to right"); insert( &((*p) -> right), num); }
  2. M

    Program Overflow: Troubleshooting Tips

    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...
Back
Top