Newer
Older
src / c / c-tutorial / long.c
#include <stdio.h>
#include <limits.h>

int main() {
	printf("long Grösse: %d Byte\n", sizeof(long));
	printf("Wertebereich von %d bis %d\n", LONG_MAX, LONG_MAX);
	return 0;
}