learnc/learnc13.c Güncelle

This commit is contained in:
akoray420 2023-09-30 17:50:52 +03:00
parent 9a921624a9
commit b77505ceee

View File

@ -10,7 +10,7 @@ int main() {
printf("5! = %i\n", factorial(5));
}
/* define your function here (don't forget to declare it) */
// define your function here (don't forget to declare it)
int factorial(int x) {
if (x == 0) {