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

what is the difference between <stdio.h> and "stdio.h"

14 Answers   Invendis, Kanbay, Mastek, MathWorks,


Should I learn data structures in c or python?

0 Answers  


Why does the call char scanf work?

0 Answers  


What does s c mean in text?

0 Answers  


How do you redirect a standard stream?

0 Answers  


What are identifiers and keywords in c?

0 Answers  


without using arithmatic operator solve which number is greater??????????

1 Answers   Accenture,


What is difference between union and structure in c?

0 Answers  


What is the difference b/w main() in C language and main() in C++.

7 Answers  


how to print this sereis 2 4 3 6 5..........?

3 Answers  


what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1

1 Answers   IBM,


totally how much header files r in c language

8 Answers   TCS,


Categories