This commit is contained in:
Triggered_Tux 2019-01-06 14:51:57 -05:00
parent 81fd25e5fc
commit f30a915ee0
1 changed files with 1 additions and 1 deletions

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;
}