Printf Scanf C Tutorial

Available for type-identifiers e, E, f, g, and G.
Display value as long double.

#include 
main()
{
    long double f = 9999.999;
    printf(" %LG \n",f);
}
10000