Are recursive functions faster than iteration?

I think its faster with C++`

Thanks @xenikh_32 For Answering

2 Likes

@gennady.korotkevich which is better approach

2 Likes

Recursion is when a statement in a function calls itself repeatedly . The iteration is when a loop repeatedly executes until the controlling condition becomes false .

1 Like