How can i implement "Big-Integer" for c/c++ programming? Is there any build function in c/c++ library? or do I have to implement the Function for it?
{
BigInt fac=1;
int value=25;
for(int i=1;i<=25;i++){
fac=fac*i;
}
cout<<fac<<endl;
}
I am trying like this but seems like there is no data type like "Big Int" .