Derive the complexity expression for AVL tree?
Answer / bipworld
height of AVL tree is limited to 1.44 log(n) where n is
number of nodes.
| Is This Answer Correct ? | 3 Yes | 1 No |
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
If I have a char * variable pointing to the name of a function ..
What is dynamic variable in c?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
What is the use of ?: Operator?
Is the exit() function same as the return statement? Explain.
0 Answers Agilent, ZS Associates,
Explain what is the purpose of "extern" keyword in a function declaration?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
11 Answers HCL, Vector, Vector India, Vector Solutions, Wipro,
how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?
Why we use stdio h in c?