MCPcopy Create free account
hub / github.com/E869120/math-algorithm-book / func

Function func

codes/c/Code_3_06_6.c:3–5  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <stdio.h>
2
3int func(int N) {
4 return func(N - 1) * N;
5}
6
7int main() {
8 int N;

Callers 1

mainFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected