Mega Code Archive

 
Categories / C Tutorial / Printf Scanf
 

E, E

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