Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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>
2
int fun(int n)
3
{
4
if(n>100)
5
return n-10;
6
return fun(fun(n+11));
7
}
8
int main()
9
{
10
int r;
Callers
4
main
Function · 0.70
fun
Method · 0.50
rob
Method · 0.50
eventfun
Method · 0.50
Calls
no outgoing calls
Tested by
no test coverage detected