Initial commit
This commit is contained in:
9
kapitel5/max_int.c
Normal file
9
kapitel5/max_int.c
Normal file
@@ -0,0 +1,9 @@
|
||||
#include <stdio.h>
|
||||
#include <limits.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
printf("Maximal signed int: %d\n", INT_MAX);
|
||||
printf("Maximal unsigned int: %u\n", UINT_MAX);
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user