max int c++ code example

Example 1: c++ max of array

cout << " max element is: " << *max_element(array , array + n) << endl;

Example 2: max int python

import sys
MAX_INT = sys.maxsize - 1

Example 3: maximum int c++

#include <limits>

int imin = std::numeric_limits<int>::min(); // minimum value
int imax = std::numeric_limits<int>::max(); // maximum value (2147483647)

Example 4: max c++

// max example
#include <iostream>     // std::cout
#include <algorithm>    // std::max

int main () {
  std::cout << "max(1,2)==" << std::max(1,2) << '\n';
  std::cout << "max(2,1)==" << std::max(2,1) << '\n';
  std::cout << "max('a','z')==" << std::max('a','z') << '\n';
  std::cout << "max(3.14,2.73)==" << std::max(3.14,2.73) << '\n';
  return 0;
}

Example 5: int max in c++

2147483647
  unsigned long long int = 18 446 744 073 709 551 615

Tags:

C Example