This commit is contained in:
Triggered_Tux 2019-01-06 14:46:38 -05:00
parent 942c6d053e
commit 4f3e95f00f
1 changed files with 8 additions and 0 deletions

8
intsize.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;
}