Recent content by ma12
-
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); }- ma12
- Post #3
- Forum: Programming and Computer Science
-
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...- ma12
- Thread
- Program Tips Troubleshooting
- Replies: 5
- Forum: Programming and Computer Science