aboutsummaryrefslogtreecommitdiff
path: root/sizes.c
diff options
context:
space:
mode:
Diffstat (limited to 'sizes.c')
-rw-r--r--sizes.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/sizes.c b/sizes.c
new file mode 100644
index 0000000..647c169
--- /dev/null
+++ b/sizes.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+int main(void) {
+
+ printf("sizeof(char): %lu\nsizeof(short): %lu\nsizeof(long): %lu\nsizeof(size_t): %lu\nsizeof(float): %lu\nsizeof(double): %lu\nsizeof(int): %lu\n",
+ sizeof(char), sizeof(short), sizeof(long), sizeof(size_t), sizeof(float), sizeof(double), sizeof(int));
+
+ return 0;
+} \ No newline at end of file