Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/codemistic/Data-Structures-and-Algorithms
/ main
Function
main
CPP/recursion/fib_series.cpp:18–30 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
16
}
17
18
int main(){
19
cin.tie(0)->sync_with_stdio(0);
20
int n;
21
cin>>n;
22
int arr[n];
23
fib(arr,n);
24
for (int i = 0; i <=n; ++i)
25
{
26
cout<<arr[i]<<
" "
;
27
}
28
29
return 0;
30
}
Callers
nothing calls this directly
Calls
1
fib
Function · 0.85
Tested by
no test coverage detected