The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder
traversal is??? please help me on this
Answer Posted / sk
inorder traversal is 7,3,14,22,55,17,5
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
write a programming in c to find the sum of all elements in an array through function.
What is the explanation for modular programming?
How many data structures are there in c?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
What is c programming structure?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }
Is malloc memset faster than calloc?
Do you know null pointer?
What is the difference between near, far and huge pointers?
What are the main characteristics of c language describe the structure of ac program?
Explain how can you tell whether a program was compiled using c versus c++?
How do I use strcmp?
How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?
What is n in c?
What is the benefit of using const for declaring constants?