Initial commit

This commit is contained in:
2023-05-22 23:28:51 -03:00
commit 5c1403aa91
467 changed files with 18649 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,15 @@
#include <stdio.h>
int factorial(int n)
{
if (n == 0)
return 1;
else
return n * factorial(n - 1);
}
int main() {
int n;
n = 5;
printf("%d! = %d\n", n, factorial(n));
return 0;
}