bigint-calculator-cplusplus
A calculator to calculate large numbers that are larger than c++ primitive number type sizes. Two approaches have been taken to implement the bigint calculator. First, tried with Stack data structure and secondly, tried with a char array. Second approach was rather successful because of the complications of first approach.