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 to develop software using "c" programming?

1 Answers   IBM, TCS,


program to print upper & lower triangle of a matrix

2 Answers   TCS,


#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }

12 Answers   Capital IQ, Sasken,


how does the for loop work actually..suppose for the following program how it ll work plz explain to me for(i=5;i>=0;i--) prinf(i--);

19 Answers   RMSI,


main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????

1 Answers  






Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"

1 Answers  


Explain what is the difference between a string and an array?

0 Answers  


What is the role of && operator in a program code?

0 Answers  


What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none

9 Answers   IBM,


How can I manipulate individual bits?

0 Answers  


What is the difference between arrays and pointers?

0 Answers  


What's the difference between calloc() and malloc()?

4 Answers  


Categories