Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
C_141106_Factorial
//Title of this code #include <stdio.h> int main(void) { unsigned short N; unsigned short i; unsigned long F; printf("Valor de N ... "); scanf(" %hu", &N); i = N; F = 1; while(i){ F *= i--;} printf("El factorial de %hu es %lu\n", N, F); return 0; }
run
|
edit
|
history
|
help
0
A_141205_CadenaValorNumerico
2-D array
coding!!Woo!!
C dynamic string implementation using preprocessor
Stub Program for Problem 5 HW 2
example of scanf and basic integer manipulation
150109_RecursividadParImpar
muuchas funciones utiles
Simple Calculator v1.0
Practice Problem 7