Available for type-identifiers e, E, f, g, and G.
Display value as long double.
#include <stdio.h> main() { long double f = 9999.999; printf(" %LG \n",f); }
10000