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

Function hehe

CPP/recursion/1toN.cpp:8–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6#define mod 1000000007
7#define endl '\n'
8void hehe(int n){
9
10 if(n==0) return;
11 cout<<n--<<" ";
12 hehe(n);
13}
14int main(){
15 cin.tie(0)->sync_with_stdio(0);
16 int n;

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected