How do languages such as Python overcome C's Integral data limits?

后端 未结 5 638
天命终不由人
天命终不由人 2021-01-15 16:06

While doing some random experimentation with a factorial program in C, Python and Scheme. I came across this fact:

In C, using \'unsigned long long\' data type, the

5条回答
  •  终归单人心
    2021-01-15 16:24

    It's called Arbitrary Precision Arithmetic. There's more here: http://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic

提交回复
热议问题