Quantcast
Channel: CodeChef Discuss - latest questions
Viewing all articles
Browse latest Browse all 40121

explain me this code...

$
0
0
#include<stdio.h>
int call(int);
int main()
{
int n=9;
printf("1 function");
call(n);
getchar();
return 0;
}
int call(int n)
{
if(n<=0)
return 0;
else
call(--n);
printf("\n%d function",n);
call(--n);
return 0;
}

Viewing all articles
Browse latest Browse all 40121

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>