Login
Remember
Register
Ask a Question
What is recursion in C Language?
0
votes
asked
Mar 10, 2020
in
C Plus Plus
by
rahuljain1
What is recursion in C Language?
#c-language-recursion
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Mar 10, 2020
by
SakshiSharma
A recursion function is one which calls itself either directly or indirectly it must halt at a
definite point to avoid infinite recursion.
...