Are there types bigger than long long int in C++?

前端 未结 9 752
遥遥无期
遥遥无期 2020-12-08 13:18

Are there types bigger than long long int in C++?

My compiler is g++.

相关标签:
9条回答
  • 2020-12-08 13:51

    No, but you can use libraries like GMP to handle bigger numbers.

    0 讨论(0)
  • 2020-12-08 13:52

    __int128
    __uint128

    ​​​​​ ​​​​​​​​​​​​​​​

    0 讨论(0)
  • 2020-12-08 13:53

    you can check out BigInt class... http://sourceforge.net/projects/cpp-bigint/

    (There are many other BigInts out there...)

    0 讨论(0)
提交回复
热议问题