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

Function fuc

CPP/recursion/printn.cpp:8–14  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected