//To get the minimum and maximum integer #include<stdio.h> #include<limits.h> int main(){ int n,m; n=INT_MIN; m=INT_MAX; printf("%d ",n); printf("%d ",m); return 0; }