-->
当前位置:首页 > 题库

PROGRAMMING:Application of sizeof operator

Luz5年前 (2021-05-10)题库412
Please program to output how many bytes sizeof (long double), sizeof (3.14l) and sizeof (314ll) occupy in memory.
Use the operator sizeof to calculate the above values.
###Output format:
There is a space between every two values. Don't output extra characters.
###Input example:
```in
```
###Output example:
```out
16 16 8
```







answer:If there is no answer, please comment