#include #include int main(void) { printf("Maximal signed int: %d\n", INT_MAX); printf("Maximal unsigned int: %u\n", UINT_MAX); return 0; }