Problem1531--C Programming Practicals 2 problems-7

1531: C Programming Practicals 2 problems-7

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 394  Solved: 213
[Submit] [Status] [Web Board] [Creator:]

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.

Input

无需输入

Output

size of 100 is 4 size of c is 1 size of 100.101 is 4

Sample Output Copy

size of 100 is 4
size of c is 1
size of 100.101 is 4

Source/Category

108