given post order,in order construct the corresponding binary
tree
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
A marketing company wishes to construct a decision table to decide how to treat clients according to three characteristics: Gender, City Dweller, and age group: A (under 30), B (between 30 and 60), C (over 60). The company has four products (W, X, Y and Z) to test market. Product W will appeal to female city dwellers. Product X will appeal to young females. Product Y will appeal to Male middle aged shoppers who do not live in cities. Product Z will appeal to all but older females.
what is Array?
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
find a number whether it is even or odd without using any control structures and relational operators?
22 Answers Microsoft, Shashank Private Limited,
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
what does ‘#include’ mean?
What is the argument of a function in c?
What is calloc() function?
What is the function of multilevel pointer in c?
Why should I prototype a function?