Exp 9 DS
AI-enhanced title
h>#include <stdlib.h>
struct Node { int data; struct Node* left; struct Node* right;};
int main() { struct Node* root = NULL; int data, i;
return 0;}