MSK Technologies

Home
Practice Programs
Java Programs Python Programs Java Quiz
Pages
Python Java Material PLSQL Material
Search A Job

Write a C-program to print factorial of n numbers using while loop?

  1. Home
  2. C Language Programs

Write a C-program to print factorial of n numbers using while loop?

Write a C-program to print factorial of n numbers using while loop


#include <stdio.h>
int main() {
    int x=1,n,fact=1;
    printf("Enter n value ");
    scanf("%d",&n);
    while(x<=n)
    {
        fact=fact*x;
        printf("\n%d Factorial is %d",x ,fact);
        x++;
    }
    return 0;
}

Output:

Enter n value 5

1 Factorial is 1
2 Factorial is 2
3 Factorial is 6
4 Factorial is 24
5 Factorial is 120




More Programs


66 . Write a C-program to print factorial of n numbers using while loop
67 . Write a C-program to print sum of natural numbers using while loop
68 . Write a C-program to print sum of even numbers using while loop
69 . Write a C-program to print sum of odd numbers using while loop
70 . Write a C-program to print sum of even or odd numbers based on the n value using while loop
71 . Write a C-program to print sum of even or odd numbers based on the n value using single while loop
72 . Write a C-program to display table using while loop
73 . Write a C-program to print a to z using while loop
74 . Write a C-program to print ASCII values of a to z using while loop
75 . Write a C-program to print ASCII values of A to Z using while loop
76 . Write a C-program to print ASCII values of Numbers using while loop



Apply For The Job

Apply For Job

Java Material

Python Material

PLSQL Material

.Net Material

Java Practice Programs

400 Java Programs

Java Practice Programs

Write a Java program to convert a binary number to decimal number

Write a Java program to swap two variables

Write a Java program to print the even numbers from 1 to 20

Write a Java program to print the sum, multiply, subtract, divide and remainder of two numbers

Write a Java program and compute the sum of the digits of an integer

Python Practice Programs

Write a Python program to count number of vowels in the given string

Write a python program to print most frequent letter in a string

Write a python program to print lowercase names

Write a Python program that accepts a filename from the user and prints the extension of the file.

Write a python program to counting item occurrences

Java Quiz

Java Quiz - 8

Java Quiz - 18

Java Quiz - 14

Java Quiz - 19

Java Quiz - 21

Courses
Java Python PLSQL .Net ADO.Net About Us
Quick Links
Daily Use English Sentences Daily General Knowledge General Knowledge Latest Update Inventions and Inventors జనరల్ నాలెడ్జ్ General Knowledge Spoken English Spoken Hindi GK Hindi Telugu Facts Unknown Facts Psychology Facts Motivation Quotes విటమిన్ - సి,డి,ఇ,కె Android
Spiritual
రాధాకృష్ణ భగవద్గీత Motivation Quotes Slokas Talapatra Nidhi ఆధ్యాత్మిక భక్తి ప్రపంచం Sadhguru Sai Motivation Quotes గౌతమ బుద్ధుడు Bhagavad Gita Quotes
Newsletter

Dolor amet sit justo amet elitr clita ipsum elitr est.

© sateeshm, All Right Reserved. Designed By sateeshm
Home Help FQAs