This commit is contained in:
Triggered_Tux 2019-01-06 14:51:57 -05:00
parent 81fd25e5fc
commit f30a915ee0

View file

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