fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float x;
  5. x=12.3;
  6. printf("%f\n",x);
  7. printf("%e\n",x);
  8. return 0;
  9. }
Success #stdin #stdout 0s 5536KB
stdin
Standard input is empty
stdout
12.300000
1.230000e+01