main use of recursive function

a) processing speed high

b) reduce program length/reduce repeated statements

c) if you do not, use iterative methods like, for, while or do-while

d) all the above


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

Post New Answer

More C Interview Questions

What is the maximum length of an identifier?

0 Answers  


what is disadvantage of pointer in C

13 Answers   Tech Mahindra,


How do I declare a pointer to an array?

6 Answers   IBM,


how can make variable not in registers

1 Answers   TCS,


1) int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain the explain the output

2 Answers  






#include<stdio.h> void main() { int a [5]; for (i=0; i<=4; i++) printf(ā€œ%dā€ ,a[i]); }

8 Answers  


What does the message "warning: macro replacement within a string literal" mean?

1 Answers  


what are bps & baud rates? differentiate these two?

2 Answers   TCS,


What are lookup tables in c?

0 Answers  


how to swap 2 numbers within a single statement?

4 Answers  


Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?

0 Answers  


Write a code on reverse string and its complexity.

0 Answers   Expedia,


Categories