Big Number Factorial
/*** * author: kamran_11b * created: 29.05.2018 ***/ #include <bits/stdc++.h> using namespace std; void fact(int n) { int a[205]; int dig=1; a[0]=1; for(int i=2; i<=n; i++) { int temp=0; int x; for(int j=0; j<dig; j++) { x=(a[j]*i)+temp; a[j]=x%10; x=temp=x/10; } while(x) { a[dig++]=x%10; x=x/10; } } for(int i=dig-1; i>=0; i--) { ...