From 3037494e9cc9d3abca972ff368511d25f100e72c Mon Sep 17 00:00:00 2001 From: snakedlover <44599485+snakedlover@users.noreply.github.com> Date: Tue, 30 Oct 2018 12:19:59 +0530 Subject: [PATCH] Create C Program to Find the Size of int, float, double and char --- ... Find the Size of int, float, double and char | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 C Program to Find the Size of int, float, double and char diff --git a/C Program to Find the Size of int, float, double and char b/C Program to Find the Size of int, float, double and char new file mode 100644 index 000000000..deed5cd9d --- /dev/null +++ b/C Program to Find the Size of int, float, double and char @@ -0,0 +1,16 @@ +#include +int main() +{ + int integerType; + float floatType; + double doubleType; + char charType; + + // Sizeof operator is used to evaluate the size of a variable + printf("Size of int: %ld bytes\n",sizeof(integerType)); + printf("Size of float: %ld bytes\n",sizeof(floatType)); + printf("Size of double: %ld bytes\n",sizeof(doubleType)); + printf("Size of char: %ld byte\n",sizeof(charType)); + + return 0; +}