Web-Development-with-Blazor.../Chapter16/RunningCCode/Test.c

5 lines
73 B
C
Raw Permalink Normal View History

2023-02-17 15:28:17 +01:00
int fact(int n)
{
if (n == 0) return 1;
return n * fact(n - 1);
}