RasptestPi/floatsize.c

8 lines
133 B
C
Raw Normal View History

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