recategorized by
701 views
0 votes
0 votes
A full binary tree is a tree in which every node other than the leaves has two children. If there are 600 leaves then total number of leaf nodes are?
recategorized by

1 Answer

Related questions

0 votes
0 votes
0 answers
1
1 votes
1 votes
1 answer
2
Prince Sindhiya asked Dec 16, 2018
755 views
The value of z after the execution of the following program isvoid f(int x) {staticint z;z=z+x;}int main() {int y=10;fork();fork();f(y);return 0;}1.30 2.20 3.40 4. 10