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 program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
which do you prefer C or Pascal?
Write a C program to accept a matrix of any size. Find the frequency count of each element in the matrix and positions in which they appear in the matrix
what does exit() do?
What are c identifiers?
struct node { int *a; char *b; char array[12]; }; struct node m,*n; assign the value in *a,*b,char array[12]
Explain what are preprocessor directives?
wap to print "hello world" without using the main function.
Write a program which has the following seven functions. The functions should be: • main() this calls the other 6 functions • fget_long() a function which returns a long data type from a file • fget_short() a function which returns a short integer variable from a file • fget_float() a function which returns a floating point variable from a file • fprt_long() a function which prints its single, long argument into a file • fprt_short() a function which prints its single, short argument into a file • fprt_float() a function which prints its single, floating point argument into a file. You should use fscanf() to get the values of the variables from the input (the file) and fprintf() to print the values to the other file. Pay attention to using the correct format for each of the data types.
What the advantages of using Unions?
When should the const modifier be used?
int i=0,j; j=++i + ++i ++i; printf(" %d",j);