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

View File

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