Write a program to identify if a given binary tree is balanced or not.
No Answer is Posted For this Question
Be the First to Post Answer
Can i use “int” data type to store the value 32768? Why?
What is the hardest programming language?
What is a ternary operator in c?
Is c a great language, or what?
What is the modulus operator?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
What is the scope of global variable in c?
write a reverse string to print a stars.(with out using logic) ***** **** *** ** *
What is action and transformation in spark?
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
What are compound statements?