add showf_pt.c

This commit is contained in:
LingZhaoHui 2021-11-02 23:07:58 +08:00
parent d22453ea71
commit fe2322c9e2

17
chapter3/showf_pt.c Normal file
View File

@ -0,0 +1,17 @@
#include <stdio.h>
int main()
{
float aboat = 32000.0;
double abet = 2.14e9;
long double dip = 5.32e-5;
printf("%f can be written %e\n", aboat, aboat);
// 下一行要求编译器支持c99或者其中的相关特性
printf("And it's %a in hexadcimal, powers of 2 notation\n", aboat);
printf("%f can be written %e\n", abet, abet);
// %LF 可能会存在精度丢失的问题
printf("%LF can be written %Le\n", dip, dip);
return 0;
}