fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int revolution = 20;
  6. float Tdr = 1.12345;
  7. float tm = revolution * Tdr;
  8. printf("T\t%f", tm);
  9. }
  10.  
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
T	22.469002