shashankms-dev / unbounded-integer-c

C library for handling arbitrarily large integers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

unbounded-integer-c

C library for arbitrary sized integers

The number is stored in an array as blocks of unsigned 32-bit integers. This makes performing arithmetic operations on these numbers faster and easier as compared to storing the number as a string of digits.

The size of the number is limited only by the availability of system memory.

Arithmetic operations such as addition, subtraction, multiplication, division, modulo, exponentiation etc. are defined on unbounded integers

About

C library for handling arbitrarily large integers

License:GNU General Public License v3.0


Languages

Language:C 96.7%Language:Makefile 3.3%