new file: floatsize.c

helloworld
	intsize

test
This commit is contained in:
Triggered_Tux 2019-01-06 19:49:08 +00:00
parent 4f3e95f00f
commit 8d29df4f9b
1 changed files with 8 additions and 0 deletions

8
floatsize.c Normal file
View File

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