RasptestPi/intsize.c

8 lines
127 B
C
Raw Permalink Normal View History

2019-01-06 19:46:38 +00:00
#include <stdio.h>
#include <limits.h>
int main() {
printf("Storage size for int : %d \n", sizeof(int));
return 0;
}