MCPcopy Create free account
hub / github.com/codemistic/Data-Structures-and-Algorithms / fun

Function fun

CPP/recursion/NestedRecursion.cpp:2–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <stdio.h>
2int fun(int n)
3{
4if(n>100)
5return n-10;
6return fun(fun(n+11));
7}
8int main()
9{
10int r;

Callers 4

mainFunction · 0.70
funMethod · 0.50
robMethod · 0.50
eventfunMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected