fork download
  1. // Program Cetak Desimal
  2. #include <stdio.h>
  3.  
  4. int main(void) {
  5. // your code goes here
  6. float x=12.3456789 ;
  7. printf ("%.3f\n" , x);
  8.  
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
12.346