1.

What does the following piece of code do ?int AAAA(search Tree T) { if(T=NULL) return NULL; else if(T->left==NULL) return T ; else return AAAA(T->left); ​

Answer»

ANSWER:

....... ..........,,,,,



Discussion

No Comment Found

Related InterviewSolutions