Skip to content

Instantly share code, notes, and snippets.

@bhaveshmunot1
Created June 4, 2020 00:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bhaveshmunot1/2c22d2abed42f8e36444c968ae74a1b1 to your computer and use it in GitHub Desktop.
Save bhaveshmunot1/2c22d2abed42f8e36444c968ae74a1b1 to your computer and use it in GitHub Desktop.
Part 2 of Indirect Recursion structure.
int fun2(int x) {
// ....
fun1(x-1);
// ....
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment