prog.c: In function ‘main’:
prog.c:7:13: error: ‘INT_MIN’ undeclared (first use in this function)
sizeof(int),INT_MIN,INT_MAX);
^~~~~~~
prog.c:7:13: note: each undeclared identifier is reported only once for each function it appears in
prog.c:7:21: error: ‘INT_MAX’ undeclared (first use in this function)
sizeof(int),INT_MIN,INT_MAX);
^~~~~~~
prog.c:9:14: error: ‘CHAR_MIN’ undeclared (first use in this function)
sizeof(char),CHAR_MIN,CHAR_MAX);
^~~~~~~~
prog.c:9:23: error: ‘CHAR_MAX’ undeclared (first use in this function)
sizeof(char),CHAR_MIN,CHAR_MAX);
^~~~~~~~
prog.c:11:14: error: ‘LONG_MIN’ undeclared (first use in this function)
sizeof(long),LONG_MIN,LONG_MAX);
^~~~~~~~
prog.c:11:23: error: ‘LONG_MAX’ undeclared (first use in this function)
sizeof(long),LONG_MIN,LONG_MAX);
^~~~~~~~
prog.c:13:14: error: both ‘short’ and ‘char’ in declaration specifiers
sizeof(short char),SCHAR_MIN,SCHAR_MAX);
^~~~
prog.c:13:20: error: ‘SCHAR_MIN’ undeclared (first use in this function)
sizeof(short char),SCHAR_MIN,SCHAR_MAX);
^~~~~~~~~
prog.c:13:30: error: ‘SCHAR_MAX’ undeclared (first use in this function)
sizeof(short char),SCHAR_MIN,SCHAR_MAX);
^~~~~~~~~
prog.c:15:15: error: ‘SHRT_MIN’ undeclared (first use in this function)
sizeof(short),SHRT_MIN,SHRT_MAX);
^~~~~~~~
prog.c:15:24: error: ‘SHRT_MAX’ undeclared (first use in this function)
sizeof(short),SHRT_MIN,SHRT_MAX);
^~~~~~~~