Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
B_141121_factorial02
//Title of this code #include <stdio.h> int main(void) { long factorial[20]; short i; for(factorial[0] = 1 , i = 1 ; i < 20 ; i++) { factorial[i] = i * factorial[i - 1]; } for(i = 0 ; i < 20 ; i++) { printf("%3hd --> %20ld\n", i, factorial[i]); } return 0; }
run
|
edit
|
history
|
help
0
B_141104_NotaSwitch
Refcount220323
Practica 5 ejercicio beneficio empresa
Spring 2017 Lab 4 v1.1
ex1
get the repeated max
1
dynamic memory allocation.c
gets.c
150116_OrdenMatriz