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

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

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

My compiler is g++.

9条回答
  •  臣服心动
    2020-12-08 13:30

    You can use

    #include   
    using namespace boost::multiprecision;
    

    to work with data type bigger than long long int and the data type is cpp_int Ref

提交回复
热议问题