This is the example of c-programming. You can edit and compile code in your own way on clicking button. If you have better solution or you found any error on code, then give us suggestion.
Full Code:
Code Explanation :
You should have the knowledge of following topics of C programming:
The factorial of number n(input given by user) is given by:
factorial of n (n!) = 1 * 2 * 3 * 4....n
The factorial of a negative number doesn't exist. And, the factorial of 0 is 1.
In this program, we are taking positive integer as input from user and calculate the factorial using for loop
.
Since a number's factorial might be very high, the form of factorial variable is declared unsigned long
.
The program prints error id user give positive integer.
Algorithm
Step 1 : start Step 2 : Declare variables n, i, fact Step 2 : Initialize fact = 1 Step 3 : Read n Step 4 : IF n < 0 THEN Print Error! Factorial of a negative number doesn't exist. goto step 7 ELSE goto step 5 Step 5 : Repeat this process until i < n 5.1 : fact *= i Step 6 : Display fact Step 7 : end
Flowchart

Our example mainly covers following topics in any programing
- Basic Programs
- Number Programs
- Array Programs
- Matrix Programs
- Pattern Programs
- String Programs
- Tree Programs
- Singly Linked List Programs
- Circular Linked List Programs
- Doubly Linked List Programs
Here we share programs on various topics such as array strings, series area & volume of geometric figures, mathematical calculation algorithms for sorting & searching and much more.Our goal is to provide you with the perfect solution to all the programming problems you may have encountered either during interviews or in class assignments. If you don’t find what you are looking for then please drop a line in the comment section of example page or you can request from account page so that we can get it added to the below collection of programs. Happy Learning!!
If you are confident with the above programs and are able to successfully understand and run them without any problems then it is time for you to take a step further and learn comprehensive programming principles using examples and flow diagrams. Here is the link: Programming tutorial lists .
If you find this example helpful, don't forget to share it with your friends. And stay updated with us by subscribing adzetech.
If you find any code error or grammetical error then you can suggest for example improvement on clicking below button.
Check out these related examples:
- C Program to convert lowercase character into uppercase and vice versa using function
- C Program to Compute Quotient and Remainder
- C Program to Calculate the Sum of Natural Numbers
- C Program to Display Prime Numbers Between Two Intervals
- C program to multiply two matrices without function
- C Program to convert Celsius into Fahrenheit
- C Program to Store Information of a Student Using Structure
- C Program to Add Two Integers
- C Program to Check Whether a Number is Palindrome or Not
- C Pyramid to print pattern using stars or Pyramid star patterns | faceprep
Leave comment