integer limit

how can we store integer of limit more than its highest limit for solving the problem like FCTRL2

Here is the link for editorial.

link

It is well explained. You have to take an integer array to perform multiplication of large numbers.

Another interesting post by @kuruma

Link [here][1]

Some problems you can solve after reading this.

[FCTRL2][2]
[AMIFIB][3]

You can also use Linked List to perform operations on big numbers.

Refer [geeksforgeeks][4] to get more about linked list representation of large numbers.

Will try to add more if I find more problems based on this concept.

Happy Coding!!!
[1]: http://discuss.codechef.com/questions/7349/computing-factorials-of-a-huge-number-in-cc-a-tutorial
[2]: FCTRL2 Problem - CodeChef
[3]: AMIFIB Problem - CodeChef
[4]: Add two numbers represented by Linked List - GeeksforGeeks