Recursion
In code there is a function that calls itself
Main function Abc function Abc function Base case
Example of recursion:
#include<iostream>
using namespace std;
void abc(){ All the operations that
are performed over for
abc(){ loop can be solved
over recursion.
}
}
int main(){
return 0;
}