- cstdint[meta header]
- macro[meta id-type]
- cpp11[meta cpp]
# define INTPTR_MIN implementation-defined
intptr_t
の最小値。
ビット数16をNとして、このマクロの値は-(2N-1 - 1)以下となる。
#include <iostream>
#include <cstdint>
int main()
{
std::intptr_t min_value = INTPTR_MIN;
std::cout << static_cast<long long>(min_value) << std::endl;
}
- INTPTR_MIN[color ff0000]
- std::intptr_t[link intptr_t.md]
-9223372036854775808
- C++11
- Clang: 3.2 [mark verified]
- GCC: 4.4 [mark verified]
- ICC: ??
- Visual C++: ??