0
C: printing long double using printf
Posted by Joys of Programming on in C/C++
If you want to use very large floating numbers in C beyond what can be stored using double, use long double.This is useful for large scale scientific computations Printing a long double is shown here The output of this program As you may have noticed, the size of a long double is 12 bytes. There [...]