Can a binary search tree be used as an index? If yes, how?
Explain


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

Post New Answer

More C Interview Questions

How do I swap bytes?

0 Answers  


How can I delete a file?

0 Answers  


What is the argument of a function in c?

0 Answers  


What is difference between stdio h and conio h?

0 Answers  


What is the use of typedef in structure in c?

0 Answers  






#include<stdio.h> int main() { int a[3][3][2]= {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18}; printf("%d\n",*(*(*a+1)); return 0; } What will be the output of the above question? And how?

1 Answers   Groupon,


What are the average number of comparisons required to sort 3 elements?

2 Answers   DRDO,


main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }

3 Answers   ME,


What is a far pointer?What is the utility?

4 Answers  


what is the structure?

4 Answers   TCS,


What are the advantages and disadvantages of c language?

0 Answers  


what is the use of call back function in c?tell me with example

2 Answers   Bosch,


Categories