Recursion
A function calls itself until specific condition is met. Example:
void print(int now, int target){
if(now==target) return;
cout<<now<<endl;
print(now+1, target);
}
int main(){
print(1,11);
return 0;
}
What if there’s no if condi...
learning-dsa.hashnode.dev4 min read