Give me the code of in-order recursive and non-recursive.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }

3 Answers  


What the advantages of using Unions?

0 Answers   TISL,


how to write a prog in c to convert decimal number into binary by using recursen function,

1 Answers  


What is a pointer value and address in c?

0 Answers  


Why calloc is better than malloc?

0 Answers  






about c language

0 Answers  


The differences between Windows XP and Windows Visa

8 Answers   HCL,


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

0 Answers  


What is the difference b/w Structure & Array?

6 Answers  


WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?

1 Answers   IBM,


List the different types of c tokens?

0 Answers  


we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above

0 Answers  


Categories