Explain the binary height balanced tree?
No Answer is Posted For this Question
Be the First to Post Answer
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What is the difference between %d and %*d in C
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
Explain do array subscripts always start with zero?
Which is better between malloc and calloc?
WAP to accept first name,middle name & last name of a student display its initials?
What is null in c?
Where static variables are stored in memory in c?
How many levels of pointers can you have?
what is the maximum limit of row and column of a matrix in c programming. in linux .
How can a number be converted to a string?