This commit is contained in:
Никита Волков 2024-11-18 09:27:21 +04:00
parent 8eba38063c
commit 3571907d89

25
fact.c
View File

@ -1,18 +1,7 @@
//#define _CRT_SECURE_NO_WARNINGS
//#include <stdio.h>
//#include <stdlib.h>
//
//long fact2(int n) {
// if (n == 0) {
// return 1;
// }
// long res = fact2(n - 1) * n;
// return res;
//}
//
//void main() {
// int n = 4;
// long f = fact2(n);
//
// printf("%d! = %ld", n, f);
//}
#include <stdio.h>
int main(void)
{
printf("Hello world!");
return 0;
}