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; +}