From b01dc2a55e8da36e3ac77586ef096f3b80b63c02 Mon Sep 17 00:00:00 2001 From: shivam agarwal <43515429+shivamagarwal1999@users.noreply.github.com> Date: Sat, 17 Oct 2020 12:33:09 +0530 Subject: [PATCH] Update factorial.cpp --- factorial.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/factorial.cpp b/factorial.cpp index 75c88da..9665fbe 100644 --- a/factorial.cpp +++ b/factorial.cpp @@ -13,7 +13,7 @@ unsigned int factorial(unsigned int n) // Driver code int main() { - int num = 5; + int num = 100000; cout << "Factorial of " << num << " is " << factorial(num) << endl; return 0;