sizeof运算可以求一个数据或数据类型所要求的字节数。例如: sizeof(int) 结果为4 sizeof(3.14) 结果为8 编写程序,显示以下数据类型要求的字节数: char short int int long int double long double
时间: 2023-05-13 21:06:14 浏览: 129
C++基础学习笔记————网课
非常好的问题!以下是程序的代码:
#include <stdio.h>
int main() {
printf("char: %d bytes\n", sizeof(char));
printf("short: %d bytes\n", sizeof(short));
printf("int: %d bytes\n", sizeof(int));
printf("long int: %d bytes\n", sizeof(long int));
printf("double: %d bytes\n", sizeof(double));
printf("long double: %d bytes\n", sizeof(long double));
return 0;
}
这个程序将输出以下内容:
char: 1 bytes
short: 2 bytes
int: 4 bytes
long int: 8 bytes
double: 8 bytes
long double: 16 bytes
希望这个程序对你有所帮助!
阅读全文