Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
150109_RecursividadFactorial
//Title of this code //gcc 4.8.2 #include <stdio.h> long factorial(long n); int main(void) { long n = 5; printf("El factorial de %ld es %ld\n\n", n, factorial(n)); return 0; } long factorial(long n) { if(n == 0) return 1; return n * factorial(n - 1); }
run
|
edit
|
history
|
help
0
6 ejercicio trabajo semanal 4
CO Assignment 1 Question 4
Loop-worksharing
multiplication
get the repeated max
kushagra siingh_19BCE0665
array practice
8 trajo semal 4
Test 3
Prgm