Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 626 Bytes

long_max.md

File metadata and controls

38 lines (29 loc) · 626 Bytes

#LONG_MAX

#define LONG_MAX implementation-defined
  • implementation-defined[italic]

##概要 long の最大値。 std::numeric_limits<long>::max() と等しい。

##例

#include <climits>
#include <iostream>

int main()
{
  std::cout << LONG_MAX << '\n';
}

###出力例

2147483647

##バージョン ###言語

  • C++03
  • C++11

###処理系