In computers, variables are stored in memory locations. But the size of the memory location is fixed, so when we try to find the factorial of some greater value like 15! or 20! the factorial value exceeds the memory range and returns wrong results. For calculation of large numbers, we have to use an array to store results. In each element of the array, is storing different digits of the result. But here we cannot multiply some number with the array directly, we have to perform manual multiplication process for all digits of the result array. Video Tutorial: https://youtu.be/LCDSigIDqnw?t=15 Input and Output Input: A big number: 50 Output: Factorial of given number is: 30414093201713378043612608166064768844377641568960512000000000000 Algorithm multiply(x, multiplicand) Input: The number x, and the large multiplicand as an array. Output: Result after multiplication. Begin carry := 0 for all digits i of multiplicand, do ...