what is level of tree if leaf node is at level 4.please
explain.
Answer Posted / xxxxx
Its level 4
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
Explain what is the purpose of "extern" keyword in a function declaration?
What is a program?
What are formal parameters?
What's the difference between constant char *p and char * constant p?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }
What are the different types of errors?
using for loop sum 2 number of any 4 digit number in c language
What is void pointers in c?
Explain how can I pad a string to a known length?
What are the advantages of union?
Explain Basic concepts of C language?
What are the differences between new and malloc in C?
what is the format specifier for printing a pointer value?
Describe explain how arrays can be passed to a user defined function
a) Identify the following declarations. Ex. int i (integer variable) float a[l0](array of 10 real nos) int (*f())() void *f int (*f()) [] void *f int f[] [] [] char *(*f) () int (*f[]) [] float(*f) [] [] float **f int ******f