Write a program that uses array to calculate the factorial of a reasonable large number (say, up to 2,000).

1 answer below »

Write a program that uses array to calculate the factorial of a reasonable large number (say, up to 2,000).



Answered Same DayAug 28, 2021

Answer To: Write a program that uses array to calculate the factorial of a reasonable large number (say, up to...

Neha answered on Aug 29 2021
143 Votes
//As we take large number its factorial comes to be a very large number
//which can't be stored eve
n in long int. Array is used to store the
//factorial of large numbers. The multiplication of digits to find
//factorial is done from right most to left most.
#include
using namespace std;
#define max 20000 //maximum range till which program will find the factorial
int fact(int x, int...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here