Does GCC support long long int?

前端 未结 7 2103
南方客
南方客 2020-12-31 07:08

Does GCC support:

long long int

which would be a 64-bit integer?

Also, is long long int part of the standard?

7条回答
  •  有刺的猬
    2020-12-31 07:33

    Yes, long long is part of C99, as well as long long constants (10222333444555LL) and a few support elements. (LLONG_MAX, llrint(d), llround(d), some others.) And gcc has implemented it for some time now.

提交回复
热议问题