user2136334
0
Q:

int_max in c

// C program to print values of INT_MAX
// and INT_MIN
// we have to include limits.h for results in C
#include <limits.h>
#include <stdio.h>
int main()
{
    printf("%d\n", INT_MAX);
    printf("%d", INT_MIN);
}
1
INT_MAX = 2147483647
INT_MIN = -2147483648
0

New to Communities?

Join the community