Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created December 3, 2019 06:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/602edb8fff7e0333c7fbf9d8a2aee06c to your computer and use it in GitHub Desktop.
Save parzibyte/602edb8fff7e0333c7fbf9d8a2aee06c to your computer and use it in GitHub Desktop.
int main(void) {
unsigned long long numero = 5;
unsigned long long factorialDelNumero = factorial(numero);
printf("El factorial de %llu es %llu", numero, factorialDelNumero);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment