mirror of https://github.com/flysand7/ciabatta.git
13 lines
201 B
C
13 lines
201 B
C
|
|
||
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <limits.h>
|
||
|
|
||
|
int main() {
|
||
|
printf("%i\n", INT_MAX);
|
||
|
printf("%i\n", INT_MIN);
|
||
|
printf("%x\n", UINT_MAX);
|
||
|
printf("%x\n", 0);
|
||
|
return 0;
|
||
|
}
|