Why does my Recursion using Pointer in C crash?
I’m currently studying Computer Science and we started working with Pointers. I had the feeling that I started to understand pointers but I ran into a problem and can’t figure out what went wrong. We defined a Tree like this: typedef struct node *tree; struct node {int key; tree left, right;}; Now we should write… Read More Why does my Recursion using Pointer in C crash?