Home » Technical Questions » Programming

Improve the following code using typedef. struct node { int data1; float data2; struct node *left; struct node *right; }; struct node *ptr; ptr = (struct node *) malloc (sizeof (struct node) );

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!