fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. float a,b;
  5. a= 12.34567;
  6. b=123.45678;
  7. printf("%.6lf\n%.6f",a,b);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
12.345670
123.456779