Skip to main content

Section 27.5 Arbitrarily Large Integers

Activity 27.1.

Recall that the data types int and long int have limits on the size of numbers they can store. Why again is this so?
Record your answer below.
In order to be able to store arbitrarily large integers we’ll create a linked list of digits. This will allow us to store as many digits as we’d like (up to the amount of memory available in the computer of course.)