C Program to Find the Size of int, float, double and char
C Program to Find the Size of int, float, double and char This program declares 4 variables of type int, float, double and char. Then, the size of each variable is evaluated using sizeof the operator. Example: Program to Find the Size of a variable Output Size of int: 4 bytes Size of float:…
Read more