Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
B_141121_factorial01
//Title of this code #include <stdio.h> int main(void) { long factorial[20]; long F; short i, aux; for(i = 0 ; i < 20 ; i++) { aux = i; F = 1; while(aux) { F *= aux--; } factorial[i] = F; } for(i = 0 ; i < 20 ; i++) { printf("%3hd --> %20ld\n", i, factorial[i]); } return 0; }
run
|
edit
|
history
|
help
0
1233333
bit wise operation
strcmp
Cbinsearch
funcion dar vuelta numero
Array Incrementing by 1
Assignment 3 Final
A_141201_MatrizTodosDistintos
Float data type.c
Project 3 part 2 Book v0.5