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
HW4e5
Programação em C, testes
Is const really const? Yes
función malloc()
data types and printf
Area and Volume coding
What happens if you do a system() in rextester...
multiplication
AVANCE DE PREGUNTA 5
3468