Description
sizeof operator is used to calculate the size of data type or variables. Use this operator to show the size of an integer 100, a character c, and a value 100.101.
Output
size of 100 is 4
size of c is 1
size of 100.101 is 4
size of 100 is 4
size of c is 1
size of 100.101 is 4