How can I find leaf node with smallest level in a binary tree?
Answer / patuk panday
smallest level in a binary tree is the number is 0 and 1.
| Is This Answer Correct ? | 0 Yes | 2 No |
Are the expressions * ptr ++ and ++ * ptr same?
What is bubble sort technique in c?
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
How many keywords are there in c?
What are volatile variables?
what is ANSI and ISO
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Write a program to compute the following 1!+2!+...n!
Explain what are binary trees?
write the output of following code .. main() { static int a[]={10,20,30,40,50}; int *ptr=a; static int arr[2][2]={1,2,3,4}; char str[]="ABCD * 4#"; char *s=str+2; int i,j; for(i=0;i<5,i++) printf("%d",*ptr++); for(i=0;i<2;i++) for(j=0;j<2;j++) printf("%d\n",*(*(n+i)+j)); printf("%c\n%c\n%c\n",*(str+2),*s++,*--s); }
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