Printf Scanf C Tutorial

#include 
main()
{
    float f = 10.9999;
    printf(" %e \n",f);
    printf(" %E \n",f);
}
1.099990e+01
1.099990E+01