Answer : Explanation : typedef struct node * treeptrtypedef struct node{ int data1; float data2; treeptr *left; treeptr *right;}treenode;treeptr ptr;ptr = ( treeptr ) malloc ( sizeof ( treenode ) );
Click here to see the full blog post
Answer : Explanation : typedef struct node * treeptrtypedef struct node{ int data1; float data2; treeptr *left; treeptr *right;}treenode;treeptr ptr;ptr = ( treeptr ) malloc ( sizeof ( treenode ) );
Click here to see the full blog post