Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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'
8
void fuc(int n){
9
if(n==0)
10
return;
11
cout<<
"mera naam siddhu h"
<<endl;
12
n--;
13
fuc(n);
14
}
15
int main(){
16
cin.tie(0)->sync_with_stdio(0);
17
int n;cin>>n;
Callers
1
main
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected