Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
150109_RecursividadFibonacci
//Title of this code //gcc 4.8.2 #include <stdio.h> long fibonacci(long i); int main(void) { long i = 40; printf("El fibonacci de %ld es %ld\n\n\n", i, fibonacci(i)); return 0; } long fibonacci(long i) { if(i <= 2) return 1; return fibonacci(i - 1) + fibonacci(i - 2); }
run
|
edit
|
history
|
help
0
Project v0.12
My first reevers C 2darryp
sphere
Good
la wea afortunada
SAI_1-6.c
avance pregunta 2 guía 4 de módulo 3
Text to ASCII (top)
BSEARCH() WITH STRUCT
swap_talent.c