fork(2) download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.  
  5. double in_m = 8147483.648;
  6. printf("in = %f m, %f mm, %d mm\n", in_m, in_m *1000., (int)(in_m *1000));
  7.  
  8. // your code goes here
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 4552KB
stdin
Standard input is empty
stdout
in = 8147483.648000 m, 8147483648.000000 mm, 1296225624 mm