Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

int_min in cpp

//To get the maximum and minimum integer value
#include<iostream>
#include <bits/stdc++.h>
using namespace std;
int main(){
  int n,m;
  n=INT_MIN;
  m=INT_MAX;
  cout<<n<<"
";
  cout<<m<<"
";
  return 0;
}
 
PREVIOUS NEXT
Tagged: #cpp
ADD COMMENT
Topic
Name
9+2 =