given post order,in order construct the corresponding binary
tree


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year

7 Answers   TCS,


What is the basic structure of c?

0 Answers  


What is the difference between pure virtual function and virtual function?

0 Answers  


How many parameters should a function have?

0 Answers  


How will you print TATA alone from TATA POWER using string copy and concate commands in C?

0 Answers   Amdocs, Apps Associates,






what is the syallabus of computer science students in group- 1?

0 Answers  


what will be maximum number of comparisons when number of elements are given?

0 Answers  


What is the purpose of 'register' keyword?

0 Answers  


why division operator not work in case of float constant?

2 Answers  


What is a substring in c?

0 Answers  


#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks

9 Answers   Excel,


Identify the operators that is not used with pointer a. && b. # c. * d. >>

2 Answers  


Categories