fork(1) download
  1. #include <iostream>
  2. #include <stdlib.h>
  3.  
  4. using namespace std;
  5.  
  6. int main() {
  7.  
  8. int32_t incVelo = 0;
  9. double scal = 0.001144;
  10.  
  11. double velo = static_cast<double>(incVelo) * scal;
  12.  
  13. cout << velo << endl;
  14.  
  15. return 0;
  16. }
Success #stdin #stdout 0.01s 5520KB
stdin
Standard input is empty
stdout
0