add float_overflow.c
This commit is contained in:
parent
fe2322c9e2
commit
44f1bfc5b4
9
chapter3/float_overflow.c
Normal file
9
chapter3/float_overflow.c
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user