C语言long double 的变量如何输出
时间: 2023-11-29 20:04:02 浏览: 110
C语言数据类型和变量ppt课件.ppt
在 C 语言中,可以使用 `%Lf` 格式化字符来输出 long double 变量。例如:
```c
#include <stdio.h>
int main() {
long double x = 12345.6789L;
printf("x = %Lf\n", x);
return 0;
}
```
输出结果为:
```
x = 12345.678900
```
阅读全文