RasptestPi/intsize.c

8 lines
127 B
C

#include <stdio.h>
#include <limits.h>
int main() {
printf("Storage size for int : %d \n", sizeof(int));
return 0;
}