Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
A_141121_factorial01
//Title of this code #include <stdio.h> int main(void) { long factorial[20]; short i, aux; long F; for(i = 0 ; i < 20 ; i++) { F = 1; aux = i; while(aux) { F *= aux--; } factorial[i] = F; } for(i = 0 ; i < 20 ; i++) { printf("factorial de %2hd es %18ld\n", i, factorial[i]); } return 0; }
run
|
edit
|
history
|
help
0
upper case letter.c
avance 2 guía 4
Jan23
hello 5
c. new one
Lab 6 v1
18BCE2182 ASSESS_1 Q2-1
problem4 review fundamentos
11
program1