aditisrinivas97 / INTAL

C Library of functions to compute addition, subtraction, multiplication, division and exponentiation (positive exponent) of integers of arbitrary length.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

INTAL

C Library of functions to compute addition, subtraction, multiplication, division and exponentiation (positive exponent) of integers of arbitrary length.

Addition and Subtraction are done using brute force. Multiplication is done using the Karatsuba algorithm for fast multiplication. Division is done using a modified brute force algorithm (Number of subtractions reduced by adding multiplications by 10). Exponentiation is done by repeated multiplication.

About

C Library of functions to compute addition, subtraction, multiplication, division and exponentiation (positive exponent) of integers of arbitrary length.

License:MIT License


Languages

Language:C 86.2%Language:C++ 13.8%