fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int prec = 5;
  6. double x = 1.234567891011;
  7.  
  8. printf("%.*f", prec, x);
  9.  
  10. return 0;
  11. }
Success #stdin #stdout 0s 1832KB
stdin
Standard input is empty
stdout
1.23457