-5

I am doing a program where I have to find factorial of a large number, like of 100 whose answer is of 158 digits and I was suggested to use BigInteger in C. What is BigInteger and how can i use it.

1 Answers1

0

BigInteger is a class in the standard Java libraries. For C, you want to use GMP.

dbush
  • 205,898
  • 23
  • 218
  • 273
  • can you tell me how can i use GMP – Manish Kumar Jul 22 '15 at 01:36
  • I haven't used it much myself, however there is plenty of documentation at the provided link, particularly the chapter on [integer functions](https://gmplib.org/manual/Integer-Functions.html). – dbush Jul 22 '15 at 01:49