Lab4/fact.c

18 lines
324 B
C
Raw Normal View History

2024-11-18 09:14:37 +04:00
//#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);
//}