what is the height of tree if leaf node is at level 3. please
explain
No Answer is Posted For this Question
Be the First to Post Answer
will u give me old quesrion papers for aptitude for L & t info tech?
Explain threaded binary trees?
Which is the best sort method for library management?
what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }
how to find sum of digits in C?
State the difference between realloc and free.
What are the modifiers available in c programming language?
Tell us bitwise shift operators?
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
Can you apply link and association interchangeably?
Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0
What is a pointer on a pointer in c programming language?