• Stars
    star
    1
  • Language
    C++
  • Created over 2 years ago
  • Updated over 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

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.