Content deleted Content added
No edit summary |
Tags: Reverted Mobile edit Mobile web edit |
||
Line 35:
Consider the following [[C (programming language)|C]] program:
<syntaxhighlight lang="c">int fact ( int n)
{
if (n==0)
{
return 1;
else
{
return n*fact(n-1);
}
}
}
</syntaxhighlight>
|