something is wrong with this programYou can't do [code]masih.wasim(f,g);[/code] at line 32 because wasim(int, int) is a constructor of y...
inorder traversal function of binary treeHow about: [code]void inorder (node *tree) { if(tree != NULL) { inorder(tree->left); cou...