Differentiate between full, complete & perfect binary trees.


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

Post New Answer

More C Interview Questions

write a program that declares an array of 30 elements named "income" in the main functions. then cal and pass the array to a programmer-defined function named "getIncome" within the "getIncome" function, ask the user for annual income of 30 employees. then calculate and print total income on the screen using the following function: "void getIncome ( ai []);

0 Answers   TCS,


what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }

14 Answers  


write a program to swap two variables a=5 , b= 10 without using third variable

5 Answers  


What are the basic data types associated with c?

0 Answers  


what is a constant pointer in C

0 Answers  






Where are c variables stored in memory?

0 Answers  


application attempts to perform an operation?

0 Answers  


What is the concatenation operator?

0 Answers  


Explain how can I write functions that take a variable number of arguments?

0 Answers  


A float occupies 4 bytes in memory. How many bits are used to store exponent part? since we can have up to 38 number for exponent so 2 ki power 6 6, 6 bits will be used. If 6 bits are used why do not we have up to 64 numbers in exponent?

0 Answers  


The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference

0 Answers  


What happens if you free a pointer twice?

0 Answers  


Categories