add float_overflow.c

This commit is contained in:
LingZhaoHui 2021-11-02 23:14:59 +08:00
parent fe2322c9e2
commit 44f1bfc5b4
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#include <stdio.h>
int main()
{
float too_big = 3.4E38 * 100.0F;
printf("too_big=%e\n", too_big);
return 0;
}