Programming Code Center(PCC)
[CPP]

(PCC)::[How-to-write-CPP-Program-to-Find-Factorial]::[cpp]

File Name : Factorial.cpp

//Example: Find Factorial of a given number
#include <iostream>
using namespace std;

int main()
{
    unsigned int n;
    unsigned long long factorial = 1;

    cout << "Enter a positive integer: ";
    cin >> n;

    for(int i = 1; i <=n; ++i)
    {
        factorial *= i;
    }

    cout << "Factorial of " << n << " = " << factorial;    
    return 0;
}

Output :

Factorial.jpg