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
#include
What is an array in c?
all c language question
How many data structures are there in c?
What is pragma in c?
Explain is it better to bitshift a value than to multiply by 2?
Write a program to swap two numbers without using the third variable?
Do pointers need to be initialized?
write a c program to find the largest and 2nd largest numbers from the given n numbers without using arrays
Explain high-order bytes.
What is the size of a union variable?
What is sizeof int?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.