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
Should a function contain a return statement if it does not return a value?
What is main void in c?
write a program that print itself even if the source file is deleted?
How can I allocate arrays or structures bigger than 64K?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
What is omp_num_threads?
Give the logic for this #include<stdio.h> #include<conio.h> void main() { clrscr(); int a=10,b; b=++a + ++a; printf("%d", b); getch(); } Output: 24......How?
implement general tree using link list
How many bytes are occupied by near, far and huge pointers (dos)?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
#include<stdio.h> #include<conio.h> void main() { float a; clrscr(); a=0.5; if(a==0.5) printf("yes"); else printf("no"); getch(); }