All public logs
Jump to navigation
Jump to search
Combined display of all available logs of Ta Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 00:12, 8 March 2019 Tata (talk | contribs) created page Tree Traversal (Created page with "<pre> #include<stdio.h> #include<stdlib.h> struct node{ char val; node *l,*r; }; void pre(node *root){ printf("%c",root->val); if(root->l!=NULL) pre(root->l);...")