Recursive functions and circular functions
Is is true that recursive functions are also called as circular functions?
If yes, then what is the basis?
Administrator • Aug 30, 2015
Member • Aug 30, 2015
Member • Sep 2, 2015
I think you answered your own question?proffycircle or represented by a flowchart that "goes on and on"
See, the recursive function cannot be a circular function because even if there is a call to function itself, it does not happen indefinitely. There is always a base case (or condition) from where the function is supposed to exit in one way or the other (either by displaying some message or returning some value).
So, is calling recursive function, a circular function not a misnomer ?
Member • Sep 2, 2015