Sowmiya081103 / Factorial
#include <stdio.h> int main() { int n, i; unsigned long long fact = 1; printf("Enter an integer: "); scanf("%d", &n); // shows error if the user enters a negative integer if (n < 0) printf("Error! Factorial of a negative number doesn't exist."); else { for (i = 1; i <= n; ++i) { fact *= i; } printf("Factorial of %d = %llu", n, fact); } return 0;…
☆17Updated last year
Alternatives and similar repositories for Factorial:
Users that are interested in Factorial are comparing it to the libraries listed below
- ☆17Updated last year
- ☆19Updated last year
- ☆15Updated 11 months ago
- ☆16Updated 11 months ago
- ☆14Updated 11 months ago
- ☆13Updated 11 months ago
- ☆14Updated 11 months ago
- Config files for my GitHub profile.☆14Updated 11 months ago
- ☆19Updated 11 months ago
- ☆19Updated 11 months ago
- ☆19Updated 11 months ago
- ☆19Updated 11 months ago
- ☆20Updated 11 months ago
- ☆20Updated 11 months ago
- ☆20Updated 11 months ago
- ☆19Updated 11 months ago
- ☆21Updated 11 months ago
- ☆21Updated 11 months ago
- ☆21Updated 11 months ago
- ☆20Updated 11 months ago
- ☆26Updated last year
- ☆26Updated last year
- ☆26Updated last year
- ☆11Updated 11 months ago
- ☆11Updated 11 months ago
- ☆10Updated last year
- ☆11Updated last year
- ☆11Updated last year
- ☆11Updated last year
- ☆23Updated last year