Flo
6
Q:

integer min value c++

// C++ program to print values of INT_MAX 
// and INT_MIN 
#include<bits/stdc++.h> 
int main() 
{ 
   printf("%d\n", INT_MAX); 
   printf("%d", INT_MIN); 
   return 0; 
} 
2
// largest int in c++
signed int iMax = (unsigned int)~0 >> 1;
// largest unsigned int
unsigned int uMax = (unsigned int)~0;
1
int min = INT_MIN;
1

New to Communities?

Join the community