Differentiate between full, complete & perfect binary trees.
No Answer is Posted For this Question
Be the First to Post Answer
Why main is not a keyword in c?
how to print 2-D array using a single for loop?
2 Answers Mind Tree, TCS, Value Labs,
Toggle nth bit in a given integer - num
Explain what is a const pointer?
biggest of two no's with out using if condition statement
what is the difference between NULL('\0') and 0?
how can we use static and extern?and where can we use this?
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What is use of integral promotions in c?
What is the c value paradox and how is it explained?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
How can we open a file in Binary mode and Text mode?what is the difference?